Skip to main content
POST
/
batch
/
schedule-call
Schedule Batch Calls
curl --request POST \
  --url https://api.callintel.io/batch/schedule-call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "to_number": [
    {
      "phone_number": "<string>",
      "name": "<string>"
    }
  ],
  "from_number": "<string>",
  "scheduled_time": "2023-11-07T05:31:56Z",
  "name": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
to_number
object[]
required
from_number
string
required
scheduled_time
string<date-time>
required
name
string

Name of the batch/schedule.

Response

200

Batch scheduled successfully.