Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique authorization identifier. |
| applicationId | string | The unique identifier for the application. |
| applicationName | string | The name of the Integration. |
| personId | string | The person Id of the user. Can be used in the /people API. |
| clientId | string | The unique oAuth client id. |
| created | string | The date and time the authorization was created. |
| type | string | The type of token associated with the authorization. * `refresh` - refresh authorization used to create `access` tokens * `access` - `access` token authorization |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Authorization",
"title": "Authorization",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0FVVEhPUklaQVRJT04vZjI3MDM0ZTMtMDA5ZS00ODA4LTk5MDQtNTNkMDQ0OGJlNDVk",
"description": "The unique authorization identifier."
},
"applicationId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0FQUExJQ0FUSU9OL0NmMzkyNWU5NDFmMzhhYTc0M2Y0MmFiNzcwZmZhZjFhNTIyMjcxZDI5OTQ4NDhjNjk2YWMwYTEwN2Q2YTg5MjI3",
"description": "The unique identifier for the application."
},
"applicationName": {
"type": "string",
"example": "Developer Portal",
"description": "The name of the Integration."
},
"personId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9lYjIyYjNiZC03NGNiLTRjMjktYjA3Zi1lYWQwMmU1NjgyZDI",
"description": "The person Id of the user. Can be used in the /people API."
},
"clientId": {
"type": "string",
"example": "C80fb9c7096bd8474627317ee1d7a817eff372ca9c9cee3ce43c3ea3e8d1511ec",
"description": "The unique oAuth client id."
},
"created": {
"type": "string",
"example": "2015-10-18T14:26:16+00:00",
"description": "The date and time the authorization was created."
},
"type": {
"type": "string",
"enum": [
"refresh",
"access"
],
"description": "The type of token associated with the authorization.\n * `refresh` - refresh authorization used to create `access` tokens\n * `access` - `access` token authorization\n"
}
}
}