v2
latestOpenAPI 3.1.12026-07-2613060964.2 KBCancel Broadcast
API to cancel a running broadcast execution. You can cancel a broadcast by passing any combination of filters in the request body. When multiple parameters are provided, they are ANDed together to narrow down the matching broadcast runs.
For example, passing both list_id and idempotency_key will cancel only the broadcast runs that match both the given list and idempotency key.
post/v1/broadcast_run/cancel/
Request body
Example request
{
"execution_id": "broadcast_xxxx-xxxx-xxxx-xxxx",
"list_id": "my_user_list",
"idempotency_key": "a1b2c3d4-xxxx-xxxx-xxxx-ef0123456789"
}Response
200 - OK
Example response
{
"execution_ids": [
"broadcast_xxxx-xxxx-xxxx-xxxx"
]
}