Collective Procedure
Collective procedures are procedures by which a company overwhelmed by debt can be saved,
its creditors rights protected, and the jobs it created maintained, where possible, especially if the failure of the debtor
risks dragging down its creditors and collaborators. Do note that the creditors must manifest themselves within a short
period of time of the announcement of the procedure to have their rights enforced, although the debtor has the
obligation to notify its creditors of the start of the procedure as well.
This is a mechanism that a company overwhelmed by debt must go through, both as a legal obligation, and to give it
reprieve to reorganize its treasury and repayment plan. This may take several forms, from re-structuring the management
and operations of the company, buying out the company, to its outright liquidation.
The Collective Procedure's history is regardless of the month history current setting.
| Field | Type | Description |
|---|---|---|
| id | uuid | Unique identifier (UUID) |
| publication_date | date | Date on which the procedure was published |
| judgment_family | string | A succinct title of what kind of judgment the procedure is. It may be an opening judgment, an extract of the whole decision, a procedure termination judgement, and so on. |
| judgment_nature | string | Contains a more expressive title of what the procedure is about, or intends to achieve. |
| category | string | Business category of the procedure, derived from judgment_nature. See Categories below. |
| judgment_date | date | Date at which the procedure occurred. |
| judgment_description | string | Additional information about the decision(s) taken during the procudures, or its outcome(s) |
| link | string | Link to the announcement. |
| bodacc_id | string | Identifier of the announcement in the BODACC open data registry ("A" + bulletin number + announcement number, e.g. A202600123456) — the same id used in link. |
| administrators | array | Judicial administrators designated by the judgment, extracted from the judgment text. null when the judgment designates none (closing, striking off...) or when the designation could not be extracted — the raw text remains available in judgment_description. |
Categories
The category field groups the ~90 standardized BODACC judgment natures into a stable business taxonomy:
| Category | Meaning |
|---|---|
Redressement judiciaire | Opening, extension or conversion into receivership |
Liquidation judiciaire | Opening, extension or conversion into judicial liquidation |
Sauvegarde | Opening or extension of a safeguard procedure (including accelerated variants) |
Plan de redressement | Adoption, modification or resolution of a recovery plan |
Plan de sauvegarde | Adoption, modification or resolution of a safeguard plan |
Cession | Adoption, modification or resolution of a sale plan |
Conciliation | Homologation or resolution of a conciliation agreement |
Sortie de crise | "Traitement de sortie de crise" procedure |
Radiation | Closing for insufficiency of assets |
Sortie de procédure | Procedure ends (end-of-procedure judgment, closing for extinction of liabilities, retraction, overturned decision) |
Sanction dirigeant | Personal bankruptcy or management ban |
Acte administratif / Suivi | Administrative filings during the procedure (statements of claims, distribution project...) |
Autre / Non classé | Other judgments and orders |
Administrators
Each item of the administrators array describes one person or firm designated by the judgment:
| Field | Type | Description |
|---|---|---|
| type | string | Role of the designee. One of ADMINISTRATEUR_JUDICIAIRE, MANDATAIRE_JUDICIAIRE, LIQUIDATEUR, COMMISSAIRE_EXECUTION_PLAN. |
| name | string | Name of the designated person or firm, as published (e.g. "SELAS Vermue représentée par Me Stéphane Vermue"). |
| address | string | Street address. May be null when not published. |
| zip_code | string | Postal code. May be null when not published. |
| city | string | City. May be null when not published. |
Endpoints
/api/v6/users/{userId}/collective-proceduresReturns the list of collective procedures for the user's company.
Response:
{
"total": 1,
"per_page": 25,
"current_page": 1,
"last_page": 1,
"result": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"publication_date": "2026-02-12",
"judgment_family": "Jugement d'ouverture",
"judgment_nature": "Jugement d'ouverture d'une procédure de redressement judiciaire",
"category": "Redressement judiciaire",
"judgment_date": "2026-02-04",
"judgment_description": "Jugement prononçant l'ouverture d'une procédure de redressement judiciaire, date de cessation des paiements le 15 janvier 2026, désignant administrateur SELAS Vermue représentée par Me Stéphane Vermue 35 Rue Victor Basch 02100 Saint-Quentin ...",
"link": "https://www.bodacc.fr/pages/annonces-commerciales-detail/?q.id=id:A202600123456",
"bodacc_id": "A202600123456",
"administrators": [
{
"type": "ADMINISTRATEUR_JUDICIAIRE",
"name": "SELAS Vermue représentée par Me Stéphane Vermue",
"address": "35 Rue Victor Basch",
"zip_code": "02100",
"city": "Saint-Quentin"
}
]
}
]
}