Unified.to · Schema
UcContact
A contact represents a person that optionally is associated with a call
IntegrationsUnified API
Properties
| Name | Type | Description |
|---|---|---|
| company | string | |
| created_at | string | |
| emails | object | |
| first_name | string | |
| id | string | |
| last_name | string | |
| name | string | |
| raw | object | |
| telephones | object | |
| title | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UcContact",
"title": "UcContact",
"description": "A contact represents a person that optionally is associated with a call",
"properties": {
"company": {
"type": "string"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"emails": {
"$ref": "#/components/schemas/property_UcContact_emails"
},
"first_name": {
"type": "string"
},
"id": {
"type": "string"
},
"last_name": {
"type": "string"
},
"name": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"telephones": {
"$ref": "#/components/schemas/property_UcContact_telephones"
},
"title": {
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
}