Triggered when a business account is blocked from sending campaigns
The event is triggered when a business account is blocked from sending promotional campaigns.
This is one of the event types delivered by the pivot/event webhook. A single subscription to pivot/event delivers all of its event types — use the event field in the payload to tell them apart.
Related webhookThe same block also triggers the dedicated Account ('promotional_blocked') webhook, which carries the full promotional block details — the block state, the timestamp and the block count. Subscribe to that event as well if you need more than the notification itself.
Webhook authorization: using a directory token.
Subscribing to the pivot event webhook:
curl --location --request POST '/platform/v1/webhook/subscribe' \
--header 'Authorization: "Bearer API_TOKEN"'\
--header 'Content-Type: application/json' \
--data-raw '{
"event": "pivot/event",
"target_url": "URL"
}'Account promotional muted payload example:
{
"id": "123456789abcdefg",
"event": "account_promotional_muted"
}| Field | Type | Description |
|---|---|---|
id | string | The UID of the business that was blocked from sending campaigns |
event | string | Always account_promotional_muted for this event |
