Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| integration | string | |
| integration_slug | string | |
| category | object | |
| end_user_origin_id | string | |
| end_user_organization_name | string | |
| end_user_email_address | string | |
| status | string | |
| webhook_listener_url | string | |
| is_duplicate | booleannull | Whether a Production Linked Account's credentials match another existing Production Linked Account. This field is `null` for Test Linked Accounts, incomplete Production Linked Accounts, and ignored du |
| account_type | string | |
| completed_at | stringnull | The time at which account completes the linking flow. |
| instance_id | stringnull | |
| instance_display_value | stringnull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountDetails",
"title": "AccountDetails",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"integration": {
"type": "string"
},
"integration_slug": {
"type": "string"
},
"category": {
"oneOf": [
{
"$ref": "#/components/schemas/CategoryEnum"
},
{
"type": "null"
}
]
},
"end_user_origin_id": {
"type": "string"
},
"end_user_organization_name": {
"type": "string"
},
"end_user_email_address": {
"type": "string",
"format": "email"
},
"status": {
"type": "string"
},
"webhook_listener_url": {
"type": "string",
"format": "uri"
},
"is_duplicate": {
"type": [
"boolean",
"null"
],
"description": "Whether a Production Linked Account's credentials match another existing Production Linked Account. This field is `null` for Test Linked Accounts, incomplete Production Linked Accounts, and ignored duplicate Production Linked Account sets."
},
"account_type": {
"type": "string"
},
"completed_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "The time at which account completes the linking flow."
},
"instance_id": {
"type": [
"string",
"null"
]
},
"instance_display_value": {
"type": [
"string",
"null"
]
}
}
}