Unified.to · Schema
property_Connection_auth
An authentication object that represents a specific authorized user's connection to an integration.
IntegrationsUnified API
Properties
| Name | Type | Description |
|---|---|---|
| access_token | string | |
| api_url | string | |
| app_id | string | |
| audience | string | |
| authorize_url | string | |
| client_id | string | |
| client_secret | string | |
| consumer_key | string | |
| consumer_secret | string | |
| dev_api_key | string | |
| emails | object | |
| expires_in | number | |
| expiry_date | string | |
| key | string | |
| meta | object | |
| name | string | |
| other_auth_info | object | |
| pem | string | |
| refresh_token | string | |
| refresh_token_expires_date | string | |
| refresh_token_expires_in | number | |
| refresh_url | string | |
| state | string | |
| token | string | |
| token_url | string | |
| user_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/property_Connection_auth",
"title": "property_Connection_auth",
"description": "An authentication object that represents a specific authorized user's connection to an integration.",
"properties": {
"access_token": {
"type": "string"
},
"api_url": {
"type": "string"
},
"app_id": {
"type": "string"
},
"audience": {
"type": "string"
},
"authorize_url": {
"type": "string"
},
"client_id": {
"type": "string"
},
"client_secret": {
"type": "string"
},
"consumer_key": {
"type": "string"
},
"consumer_secret": {
"type": "string"
},
"dev_api_key": {
"type": "string"
},
"emails": {
"$ref": "#/components/schemas/property_Connection_auth_emails"
},
"expires_in": {
"type": "number"
},
"expiry_date": {
"format": "date-time",
"type": "string"
},
"key": {
"type": "string"
},
"meta": {
"additionalProperties": true,
"type": "object"
},
"name": {
"type": "string"
},
"other_auth_info": {
"$ref": "#/components/schemas/property_Connection_auth_other_auth_info"
},
"pem": {
"type": "string"
},
"refresh_token": {
"type": "string"
},
"refresh_token_expires_date": {
"format": "date-time",
"type": "string"
},
"refresh_token_expires_in": {
"type": "number"
},
"refresh_url": {
"type": "string"
},
"state": {
"type": "string"
},
"token": {
"type": "string"
},
"token_url": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"type": "object"
}