EVENTcampaign.recipients_added
Campaign recipients added
Event name: campaign.recipients_added
A batch of customers was enrolled into a campaign. Scope: location-scoped. Delivered as a signed HTTP POST to your Webhooks URL.
Every delivery is signed. Verify
X-Synup-Signature before processing — see Synup Webhooks.Payload
| Name | Type | Required | Description |
|---|---|---|---|
event | string | optional | Dotted event name. |
timestamp | string | optional | ISO-8601 UTC time the event was emitted. |
account_id | integer | optional | Synup account the event belongs to. |
location_id | string | optional | Numeric string for location-scoped events; null for brand-scoped events. |
data | object | optional | |
data.campaign_id | string | optional | Campaign UUID. |
data.recipient_count | integer | optional | Number of recipients enrolled in this batch. |
data.review_campaign_customer_ids | array of string | optional | Enrolled recipient UUIDs. |
Example delivery
{
"event": "campaign.recipients_added",
"timestamp": "2026-07-15T09:01:30Z",
"account_id": 11073,
"location_id": "279381",
"data": {
"campaign_id": "8f3a1c72-1e4b-4d90-9a2e-6b1c0f7a4d21",
"recipient_count": 2,
"review_campaign_customer_ids": [
"b1..",
"c2.."
]
}
}