v33

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-03-2682193603.4 KB
tokens

Create an application access token

Generate an application access token using OAuth 2.0 client credentials flow for server-to-server authentication. Requires client ID and secret sent via Basic authentication header with grant_type=client_credentials in the request body. Returns a bearer access token with expiration time for authenticating API requests scoped to your application. Essential for secure API access.

post/token

Response

successful operation

access_tokenstring required

A new access token that is used to authenticate against resources that belong to the app itself.

token_typestring required

The type of token, always "Bearer"

expires_ininteger required

The lifetime of the access token, in seconds. Default is 3600.

Example response

{
  "access_token": "gTm0p62yYXFiB1rOdhV0TsNOinC2V2P1CMaAtojkO9JEGbv3i5",
  "token_type": "Bearer",
  "expires_in": 3599
}
All 82 operations