curl --request POST \
--url https://api.vogent.ai/api/batch_dial_jobs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"callAgentId": "<string>",
"maxConcurrentDials": 123,
"name": "<string>",
"rows": [
{
"toNumber": "<string>",
"inputs": {}
}
],
"fromPhoneNumberIds": [
"<string>"
],
"schedule": {
"days": [
{
"dayOfWeek": 123,
"timeSlots": [
{
"startTime": "<string>",
"endTime": "<string>"
}
]
}
],
"timezone": "<string>",
"disableSchedule": true
}
}
'