Company
Generate API credentials for a user
Generates a fresh API client ID and secret for the given user. The secret is returned only in this response and cannot be retrieved later — store it securely. Calling this endpoint a second time rotates the credentials; any previously issued pair is invalidated.
POST
Generate API credentials for a user
Authorizations
Pass Authorization: Bearer <token> on every request. See the Authentication section of the API description for how to fetch a token.
Path Parameters
Previous
List all countries### Overview
Retrieves the list of all supported countries.
### Response
On success, the endpoint returns HTTP `200 OK` with a JSON array of country objects. Each object has the following fields:
- `id` _(integer)_
Internal identifier for the country.
- `name` _(string)_
Human-readable country name (e.g., `"Afghanistan"`, `"Åland Islands"`).
- `numeric` _(integer)_
Numeric country code, typically aligned with ISO 3166-1 numeric codes (e.g., `4`, `248`).
- `alpha` _(string)_
Alphabetic country code, typically aligned with ISO 3166-1 alpha-3 codes (e.g., `"AFG"`, `"ALA"`).
Next
Generate API credentials for a user