v2

latestOpenAPI 3.0.3Apache 2.02026-07-31158109678.6 KB
oauth

Get OAuth token information

Returns information about the current OAuth token

get/token

Query parameters

access_tokenstring

OAuth access token

Response

OK. Token information

access_tokenstring required

The OAuth access token

tokenstring

The OAuth access token

token_typestring required

The type of token issued

expires_ininteger required

Token expiration time in seconds

refresh_tokenstring

The refresh token (only provided for certain grant types)

scopestring

The scope of the access token

Example response

{
  "access_token": "abcd1234567890efgh",
  "token": "abcd1234567890efgh",
  "token_type": "bearer",
  "expires_in": 3600,
  "refresh_token": "refresh_abcd1234567890efgh",
  "scope": "all"
}