MCP is live.Set upAsk on Discord
OmniDimension
Bulk calls

Change concurrency

Change how many calls the campaign places at once, including while it is running. Raise it to finish sooner, lower it if your team cannot keep up with transfers or your numbers are being answered less.

PUT/calls/bulk_call//concurrency
Path parameters
bulk_call_idrequired
Body

Calls to place at once.

curl -X PUT 'https://backend.omnidim.io/api/v1/calls/bulk_call/{bulk_call_id}/concurrency' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "concurrent_call_limit": 5
}'
Example response
{
  "status": "success",
  "message": "Concurrency updated",
  "concurrent_call_limit": 5
}

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.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response body

application/json

Response Body

application/json