Get an access token (client_credentials)
POST/token
Issues an OAuth 2.0 access token using the client_credentials grant type.
Use this endpoint for service-to-service authentication. The returned JWT bearer
token must be passed as Authorization: Bearer <token> on all subsequent API requests.
Token lifetime is 1 hour in production.
Request
Responses
- 200
- 400
- 401
Access token issued successfully.
Bad request — invalid grant type or missing parameter.
Unauthorized — client credentials are invalid or the client does not exist.