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.
The access token received from the authorization server in the OAuth 2.0 flow.
OAuth get token request. Client credentials are sent in the Authorization header using Basic authentication.
Must be set to "client_credentials"
client_credentials "client_credentials"
successful operation
A new access token that is used to authenticate against resources that belong to the app itself.
"gTm0p62yYXFiB1rOdhV0TsNOinC2V2P1CMaAtojkO9JEGbv3i5"
The type of token, always "bearer"
bearer "bearer"
The lifetime of the access token, in seconds. Default is 3600.
3599