Cancel 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 tenant_id will cancel only the broadcast runs that match both the given list and tenant.
Authorizations
Pass as Bearer <API_KEY>. Get API Key from SuprSend dashboard Developers -> API Keys section.
Body
Filter parameters to identify broadcast runs to cancel. At least one parameter must be provided. When multiple parameters are passed, they are ANDed together.
Unique execution identifier of the broadcast run to cancel. You can find this in the broadcast logs on the SuprSend dashboard.
"broadcast_xxxx-xxxx-xxxx-xxxx"
Identifier of the user list whose broadcast runs should be cancelled.
"my_user_list"
Tenant identifier to filter broadcast runs by tenant.
"tenant_abc"
Idempotency key that was passed when triggering the broadcast. Use this to cancel a specific broadcast triggered with a known idempotency key.
"a1b2c3d4-xxxx-xxxx-xxxx-ef0123456789"
Response
200 - OK
List of broadcast execution IDs that were successfully cancelled. Empty array if no matching broadcast runs were found.
Unique execution identifier of the cancelled broadcast run.
["broadcast_xxxx-xxxx-xxxx-xxxx"]