Authentication
Bootstrap endpoints for issuing and refreshing access tokens.
Refresh access token
Bootstrap endpoint for rotating an access token by presenting a valid refresh token. The operation is public and returns a new token pair for subsequent bearer-authenticated requests.
Refresh access token › Request Body
refresh_tokenRefresh token used to rotate the current token pair.
Refresh access token › Responses
OK
access_tokenAccess token.
expires_inAccess token lifetime in seconds.
refresh_tokenRefresh token.
scopeGranted scopes.
token_typeToken type.
Obtain access token
Bootstrap endpoint for exchanging client credentials for a bearer access token. The operation is public, does not require an existing bearer token, and accepts either JSON or form-encoded client-credentials payloads.
Obtain access token › Request Body
client_idOAuth client ID used for authentication.
client_secretOAuth client secret used for authentication.
grant_typeclient_credentials · requiredOAuth grant type.
Must be client_credentials.
Obtain access token › Responses
OK
access_tokenAccess token.
expires_inAccess token lifetime in seconds.
refresh_tokenRefresh token.
scopeGranted scopes.
token_typeToken type.