Name | Description | Type | Additional information |
---|---|---|---|
refresh_token |
Refresh token that can be used to request new access token if the old token is expired.
If the token does not support refreshing or the access token lifetime is not set, this will be |
string |
None. |
scope |
Scope(s) that the user has selected in the Authorization step. Returned only when request grant_type is authorization_code |
string |
None. |
token_type |
Identifies the type of token returned. At this time, this field will always have the value |
string |
Required |
access_token |
The token that must be sent to a API. |
string |
Required |
expires_in |
The lifetime in seconds of the access token. For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated. 0 is used when the token dows not expire. |
integer |
None. |
valid_until |
Token Valid until in Unix Time Stamp (Number of seconds since Unix Epoch on January 1st, 1970 at UTC). |
integer |
None. |