OAuth 2.0 Token Endpoint
Generates an access token for API authentication using client credentials. Supports both request body authentication and Basic authentication header.
POST
OAuth 2.0 Token Endpoint
Authorizations
HTTP Basic authentication using your client_id (username) and client_secret (password). Used only to obtain an access token from the token endpoint.
Body
application/x-www-form-urlencoded
The grant type must be client_credentials
Available options:
client_credentials The client identifier (required if not provided in Authorization header)
The client secret (required if not provided in Authorization header)
The scope of the access request
OAuth 2.0 Token Endpoint