A list of individual call objects to include in the batch. Each object follows the same schema as /v1/calls.
Example
Copy
Ask AI
"call_objects": [ { "phone_number": "+1234567890", "task": "Say hello to the nice person!", "start_time": "2026-01-01 12:00:00-05:00", // Provide a UUID v7 Compliant ID for this Call ahead of time. // Requires entitlements to use. Contact your Account Executive for more information. "b_cid": "<UUID v7 Compliant ID>" // Remainder of /v1/call properties ... }, { "phone_number": "+1234567891", "task": "Say hello to the bad person!", "record": false, "start_time": "2026-01-01 1:00:00-05:00" //timezone is optional, defaults to UTC // /v1/call properties }]
Global call properties to apply to all call_objects, unless overridden per entry.
Required keys:
Must include at least one of: "task" or "pathway_id".
Forbidden keys:
"phone_number" is not allowed in the global object.
Example:
Example
Copy
Ask AI
"global": { "task": "Say hello to the nice person!", "record": true, "start_time": "2026-01-01 12:00:00-05:00" //timezone is optional, defaults to UTC // /v1/call properties}