### GET /api/Associado/intimacao/{format} Source: https://intimacaoapi.aasp.org.br/docapi/index Retrieves notifications for a specific associate. ```APIDOC ## GET /api/Associado/intimacao/{format} ### Description Retrieves publications for a specific associate. ### Method GET ### Endpoint /api/Associado/intimacao/{format} ### Parameters #### Path Parameters - **format** (string) - Required - The format of the data to be returned. ### Response #### Success Response (200) - **publications** (array) - A list of publications. - **title** (string) - The title of the publication. - **date** (string) - The date of the publication. #### Response Example { "publications": [ { "title": "Example Publication 1", "date": "2023-10-27" } ] } ``` -------------------------------- ### GET /api/Empresa/intimacao/{format} Source: https://intimacaoapi.aasp.org.br/docapi/index Retrieves notifications for a specific associate using a company key. ```APIDOC ## GET /api/Empresa/intimacao/{format} ### Description Retrieves publications for a specific associate using a company key. ### Method GET ### Endpoint /api/Empresa/intimacao/{format} ### Parameters #### Path Parameters - **format** (string) - Required - The format of the data to be returned. ### Response #### Success Response (200) - **publications** (array) - A list of publications associated with the company key. - **title** (string) - The title of the publication. - **date** (string) - The date of the publication. #### Response Example { "publications": [ { "title": "Company Notification", "date": "2023-10-27" } ] } ``` -------------------------------- ### GET /api/Associado/intimacao/GetJornaisComIntimacoes/{format} Source: https://intimacaoapi.aasp.org.br/docapi/index Retrieves journals with notifications for a specific associate. ```APIDOC ## GET /api/Associado/intimacao/GetJornaisComIntimacoes/{format} ### Description Retrieves journals containing notifications for a specific associate. ### Method GET ### Endpoint /api/Associado/intimacao/GetJornaisComIntimacoes/{format} ### Parameters #### Path Parameters - **format** (string) - Required - The format of the data to be returned. ### Response #### Success Response (200) - **journals** (array) - A list of journals with notifications. - **name** (string) - The name of the journal. - **notifications** (array) - A list of notifications within the journal. #### Response Example { "journals": [ { "name": "Journal of Law", "notifications": [ { "title": "Important Notification", "date": "2023-10-27" } ] } ] } ``` -------------------------------- ### GET /api/Empresa/intimacao/GetJornaisComIntimacoes/{format} Source: https://intimacaoapi.aasp.org.br/docapi/index Retrieves journals with notifications for a specific associate using a company key. ```APIDOC ## GET /api/Empresa/intimacao/GetJornaisComIntimacoes/{format} ### Description Retrieves journals containing notifications for a specific associate using a company key. ### Method GET ### Endpoint /api/Empresa/intimacao/GetJornaisComIntimacoes/{format} ### Parameters #### Path Parameters - **format** (string) - Required - The format of the data to be returned. ### Response #### Success Response (200) - **journals** (array) - A list of journals with notifications associated with the company key. - **name** (string) - The name of the journal. - **notifications** (array) - A list of notifications within the journal. #### Response Example { "journals": [ { "name": "Corporate Law Review", "notifications": [ { "title": "Company Update", "date": "2023-10-27" } ] } ] } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.