OAuth Token Object
The OAuth Token Object represents an access token issued to an OAuth client or partner. Tokens grant temporary access to the API and may include both an access token and a refresh token for renewal. Each token also carries metadata such as creation time, expiration date, and associated partner information.
This object is commonly used when authenticating API requests or managing token lifecycles.
OAuth Token Object Attributes
The fields listed in the table below will be returned in a JSON object when a successful request has been made.
| Attribute | Data Type | Description |
|---|---|---|
| access_token read only | string | The access token value to be used in authentication. |
| client_id read only | string | The client ID. This is a unique string representing the registration information provided to the client upon request. |
| client_secret read only | string | The client secret string. This is a unique string representing the registration information provided to the client upon request. This field is hidden and not returned in the response. |
| date_created read only | string | The date and time when the token was created. |
| date_expiration_access_token | string | The date and time when the token expires. |
| date_expiration_refresh_token | string | The date and time when the refresh token expires. |
| date_last_accessed read only | string | The date and time when the token was last accessed. |
| ip_last_accessed read only | string | The IP address from which the token was last accessed. |
| name | string | The friendly name used to identify the token. |
| partner read only | object | The Partner object associated with the OAuth token. This field is displayed if |
| partner_sid read only | string | The secure ID of the partner associated with the OAuth token. |
| refresh_token read only | string | The refresh token value to create a new token. |
| scopes | string | The scope of the access request available for this specific token. Any values in |
| token_sid read only | string | The token secure ID. |
| token_type read only | string | The token type. |