Batch Calls
Update Batch Call Status
Pause, resume, or cancel a v1 batch call.
PATCH
Changes state - verify before retry
Update Batch Call Status changes the execution state of a batch call. Use it when you need to temporarily stop new outbound calls, continue a paused batch, or permanently cancel queued work. A batch can be paused while it is
running or waiting. In the current lifecycle, running is the only active sending state, so pause a running batch before cancelling it permanently.
When To Use Update Batch Call Status
- Use
pausewhen arunningorwaitingbatch should stop creating new calls, but calls already in progress can finish. - Use
resumewhen a paused batch should continue calling remaining leads. - Use
cancelwhen a non-running batch should stop permanently and queued calls should be removed. If the batch isrunning, pause it first, then cancel.
Status Actions
Verify The Result
The current API-key success response is an empty object. After HTTP200, use List Batch Calls to check the batch status and List Calls with batch_call_id to inspect dispatch activity. If the listed batch is waiting, it is accepted but is not yet the active sender for the organization. See Batch Call Retries And Statuses for the full status diagram.
Common Errors
400 Bad Requestmeans the action is invalid or the current batch status does not allow that transition.403 Forbiddenmeans the batch call does not belong to the authenticated workspace.404 Not Foundmeans the batch call ID was not found.
Related Endpoints
- Create Batch Call: upload leads and create a batch.
- List Batch Calls: find batch IDs in your workspace.
- Get Batch Call: inspect calls generated by a batch.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Batch call ID
Example:
"batch_abc123"
Body
application/json
The status transition to apply.
Available options:
pause, resume, cancel Example:
"pause"
Response
Batch call status updated successfully.
The response is of type object.