Generate Client tokens
POST/public-api/v1/auth/token
This endpoint allows clients to generate an access token to authenticate their requests. The token is scoped to the permissions provided in the request body and is returned as a JWT Bearer token.
🔐 Authorization: Requires HTTP Basic Authentication using the client’s credentials.
Note: Each token is scoped to specific permissions and has a defined expiration.
Request
Responses
- 201
- 400
- 401
- 403
- 429
- 500
Token generated successfully
Invalid request body or requested scopes not assigned to the client.
Unauthorized – Invalid or missing token.
Requested scopes are not granted to this installation or installation has scopes not assigned to the client.
Rate limit exceeded – too many token generation requests.
Internal Server Error