ActiveCampaign · Schema
BroadcastUpdateRequest
BroadcastUpdateRequest schema from ActiveCampaign API
Marketing AutomationEmail MarketingCRMSales AutomationCustomer Experience
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| address_id | integer | |
| body | string | |
| media_urls | array | |
| preview_url | string | |
| shorten_track_links_enabled | boolean | |
| status | string | Status of the broadcast. pending_review starts kicks off the broadcast to be sent |
| scheduled_date | string | |
| sent_to_count | integer | |
| list_ids | array | |
| segment_id | string | |
| custom_run_id | string | custom run id generated from segmentMatchSome endpoint and passing a valid segment id |
| custom_segment_id | string | custom segment id generated from segmentsV2 endpoint and passing in a valid audience |
| label_ids | array |
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-broadcast-update-request-schema.json",
"title": "BroadcastUpdateRequest",
"description": "BroadcastUpdateRequest schema from ActiveCampaign API",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"address_id": {
"type": "integer",
"nullable": true
},
"body": {
"type": "string"
},
"media_urls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"preview_url": {
"type": "string",
"format": "uri"
},
"shorten_track_links_enabled": {
"type": "boolean"
},
"status": {
"type": "string",
"description": "Status of the broadcast. pending_review starts kicks off the broadcast to be sent",
"enum": [
"draft",
"pending_review"
]
},
"scheduled_date": {
"type": "string",
"format": "date-time"
},
"sent_to_count": {
"type": "integer"
},
"list_ids": {
"type": "array",
"items": {
"type": "integer"
}
},
"segment_id": {
"type": "string"
},
"custom_run_id": {
"type": "string",
"description": "custom run id generated from segmentMatchSome endpoint and passing a valid segment id",
"format": "uuid",
"nullable": true
},
"custom_segment_id": {
"type": "string",
"description": "custom segment id generated from segmentsV2 endpoint and passing in a valid audience",
"format": "uuid",
"nullable": true
},
"label_ids": {
"type": "array",
"items": {
"type": "integer"
}
}
}
}