Legal Notice
Legal notices are publications made to a journal empowered to publish legal advertisements. They usually publicize events such as the creation or removal of a company or of its headquarters, changes in leadership or ownership, and so on...
The Legal Notices' entire history is synchronized regardless of the current month_history setting.
| Field | Type | Description |
|---|---|---|
| id | uuid | Unique identifier (UUID) |
| provider_name | string | Provider from which this legal notice was obtained |
| date | date | Publication date of the legal notice |
| source | string | Journal where the notice was published or found |
| origin | string | Origin of the legal notice data |
| type | string | Type of notice |
| category | string | Category of the legal notice |
| event | string | Event described by the notice |
| text | string | Text content and details of the notice |
| link | string | URL where the original notice can be found |
Endpoints
GET
/api/v6/users/{userId}/legal-noticesReturns the list of legal notices published for the user's company.
Response:
{
"total": 0,
"per_page": 0,
"current_page": 0,
"last_page": 0,
"result": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"provider_name": "company_legal_fr",
"date": "2021-05-19",
"source": "BODACC",
"origin": "RCS",
"type": "creation",
"category": "compulsory",
"event": "Immatriculation d'une personne morale",
"text": "...",
"link": "https://..."
}
]
}