Bulk calls
Pause or resume a pool number
Stop or resume dialing from one number in the pool.
PUT/calls/bulk_call//numbers/
Bearersession
Path parameters
bulk_call_idrequiredassignment_idrequiredBody
`false` pauses the number, `true` resumes it.
curl -X PUT 'https://backend.omnidim.io/api/v1/calls/bulk_call/{bulk_call_id}/numbers/{assignment_id}' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "is_active": false }'
Example response
{ "status": "success", "is_active": false }
Authorization
BearerAuth AuthorizationBearer <token>
Bearer token authentication. Obtain your API key from the OmniDimension dashboard.
In: header
Path Parameters
bulk_call_id*integer
Id of the bulk call campaign.
assignment_id*integer
The assignment_id from List rotation pool.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
is_active*boolean
false pauses the number, true resumes it.
Response body
application/jsonResponse Body
application/json
