List register requests
Retrieve all Peppol registration requests submitted for a company.
Endpoint
| Property | Value |
|---|---|
| URL | POST /white-label-partner/register-requests |
| Method | POST |
| Auth | R-Auth: <partner-jwt> |
| Content-Type | application/json |
Example Request
curl --location '{{baseUrl}}/white-label-partner/register-requests' \
--header 'Content-Type: application/json' \
--header 'R-Auth: {{partnerJwt}}' \
--data-raw '{
"companyApiKey": "{{companyApiKey}}"
}'
Request body
{
"companyApiKey": "<company-apiKey>"
}
Request fields
| Field | Type | Required | Description |
|---|---|---|---|
companyApiKey | string | Yes | Company API key from Create company or Get company API key |
Response
[
{
"requestId": "...",
"companyId": "f5e6d7c8-1234-5678-9abc-def012345678",
"companyName": "Acme GmbH",
"status": "APPROVED",
"peppolIdentifier": "0088:1234567890123",
"updatedAt": "2026-04-29T11:02:14"
}
]
Response fields
| Field | Description |
|---|---|
requestId | Registration request UUID |
companyId | Company UUID |
companyName | Company name |
status | Current registration status |
peppolIdentifier | Peppol identifier in icd:value format |
updatedAt | Last updated timestamp |