v62

latestOpenAPI 3.0.3raw.githubusercontent.com2026-07-31136116265.6 KB
authorization

Issue an OAuth 2.0 access token (Client Credentials)

Exchanges client credentials for an access token. Parameters must be sent as application/x-www-form-urlencoded.

post/oauth2/token

Response

Successful token response

access_tokenstring required

The issued access token

expires_ininteger required

Lifetime in seconds of the access token.

scopestring

Granted scopes (space-delimited).

token_typestring required

Usually 'bearer'

Example response

{
  "expires_in": 1799,
  "scope": "openid",
  "token_type": "bearer"
}