Skip to main content

Access Token Object

Contains user access token.

codeinteger<int32>

HTTP Response Code.

Example: 200
access_tokenstring

The user's access token.

Example: eyJ0eXAiOiXKV1QibCJhbLciOiJeiUzI1.....
date_expiresinteger<int32>

Unix timestamp of the date this token will expire. Default is one year from issue date. See Access Token Lifetime & Expiry.

Example: 1570673249
refresh_tokenstring

Refresh token, returned only by login flows that support it. Exchange it at POST oauth/token with grant_type=refresh_token for a fresh access token.

Example: eyJ0eXAiOiXKV1QibCJhbLciOiJeiUzI1.....
Access Token Object
{
"code": 200,
"access_token": "eyJ0eXAiOiXKV1QibCJhbLciOiJeiUzI1.....",
"date_expires": 1570673249,
"refresh_token": "eyJ0eXAiOiXKV1QibCJhbLciOiJeiUzI1....."
}