Documentation Index
Fetch the complete documentation index at: https://blandai-calvin-pronunciationguide-web.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Your API key for authentication.
Optional encrypted key used for securing batch payloads.
Body
A list of individual call objects to include in the batch. Each object follows the same schema as /v1/calls."call_objects": [
{
"phone_number": "+1234567890",
"task": "Say hello to the nice person!"
// /v1/call properties
},
{
"phone_number": "+1234567891",
"task": "Say hello to the bad person!",
"record": false
// /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:"global": {
"task": "Say hello to the nice person!",
"record": true
// /v1/call properties
}
Response
The response includes the batch_id of the newly created batch.
The unique identifier for the batch.
{
"data": {
"batch_id": "8b8e8c57-9e6e-4e4d-84d2-9826b2268c22"
},
"errors": null
}