v1

latestOpenAPI 3.1.02026-07-2419782400.4 KB
Token endpoint

Using an authorization code

Use the token endpoint to retrieve an access token which can be used to authorize API requests. This endpoint supports the Authorization Code grant, the Refresh Token grant and the Client Credentials grant.

post/v6/authentication/oauth2/token{authorization}

Response

Successful response

refresh_tokenstring
token_typestring
expires_ininteger
access_tokenstring
scopestring

Example response

{
  "refresh_token": "c12e...b5dc",
  "token_type": "bearer",
  "expires_in": 3600,
  "access_token": "eyJh...NDcw",
  "scope": "offline asset:read"
}