v1

latestOpenAPI 3.0.12026-07-141671231.8 MB
PA Registrations

List PA Registrations

Returns all PA (Plateforme Agrée) registrations for the company, including activation status and exchange direction. Use this to determine whether the company has completed PA onboarding. Records with a null siret represent the SIREN-level (head office), other records represent establishments.

ℹ️ This endpoint requires the following scope: pa_registrations:readonly

get/api/external/v2/pa_registrations

Response

List of PA registrations for the company

has_moreboolean required

Indicates whether additional results are available beyond this set. Use this flag to determine if another request is needed.

next_cursorstring nullable required

Cursor to retrieve the next set of results. Include this value in the cursor parameter of your next request to fetch subsequent items. A null next_cursor in the response indicates no further results.

Example response

{
  "has_more": true,
  "next_cursor": "dXBkYXRlZF9hdDoxNjc0MTIzNDU2",
  "items": [
    {
      "id": 1,
      "siret": "98493148500010",
      "siren": "993369859",
      "exchange_direction": "emission_and_reception",
      "created_at": "2026-02-23T10:53:00.000Z",
      "updated_at": "2026-02-23T10:53:00.000Z"
    }
  ]
}