Get Company API Key
Retrieve the API key for a specific company. Use this endpoint if you need to recover the company API key after creation.
Endpoint
| Property | Value |
|---|---|
| URL | GET /white-label-partner/{companyId}/api-key |
| Method | GET |
| Auth | R-Auth: <partner-jwt> |
Example Request
curl --location '{{baseUrl}}/white-label-partner/{{companyId}}/api-key' \
--header 'R-Auth: {{partnerJwt}}'
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
companyId | UUID | Yes | Company UUID returned from Create company |
Response
{
"companyId": "f5e6d7c8-1234-5678-9abc-def012345678",
"apiKey": "<company-apiKey>"
}
Response fields
| Field | Description |
|---|---|
companyId | Company UUID |
apiKey | Company-scoped API key used to obtain a company JWT through Authentication |