ActiveCampaign · Schema
Recipient
Recipient schema from ActiveCampaign API
Marketing AutomationEmail MarketingCRMSales AutomationCustomer Experience
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Contact ID |
| name | string | |
| phoneNumber | string | |
| sentDate | string | Timestamp in CST |
| clicks | integer | |
| deliverability | string | |
| replies | array | |
| optOut | string | |
| details | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/activecampaign/refs/heads/main/json-schema/activecampaign-sms-recipient-schema.json",
"title": "Recipient",
"description": "Recipient schema from ActiveCampaign API",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Contact ID"
},
"name": {
"type": "string"
},
"phoneNumber": {
"type": "string"
},
"sentDate": {
"type": "string",
"format": "date-time",
"description": "Timestamp in CST"
},
"clicks": {
"type": "integer"
},
"deliverability": {
"type": "string",
"enum": [
"delivered",
"failed"
]
},
"replies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time",
"description": "Timestamp in CST"
}
}
}
},
"optOut": {
"type": "string",
"enum": [
"yes",
"no"
]
},
"details": {
"type": "object",
"properties": {
"errorCode": {
"type": "string"
},
"errorSource": {
"type": "string",
"enum": [
"ac",
"twilio"
]
}
}
}
}
}