Skip to main content
PATCH
/
batch-calls
/
{batch_call_id}
Update Batch Call
curl --request PATCH \
  --url https://api.truedy.ai/api/public/v1/batch-calls/{batch_call_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "phone_number_ids": [
    "<string>"
  ],
  "phone_rotation_strategy": "random",
  "scheduled_at": "2023-11-07T05:31:56Z",
  "start_time": "<string>",
  "end_time": "<string>",
  "max_calls_per_day": 2,
  "working_days": [
    123
  ],
  "retry_failed": true
}
'
{
  "data": {},
  "meta": {
    "request_id": "req_32e7531c-8",
    "timestamp": "2026-03-03T20:30:21.310278Z"
  }
}

Authorizations

Authorization
string
header
required

Your API key. Get it from the Truedy Dashboard. Send as: Authorization: Bearer <your_key>

Path Parameters

batch_call_id
string
required

Body

application/json
name
string | null
Required string length: 1 - 255
phone_number_ids
string[] | null
phone_rotation_strategy
enum<string>
default:random

Strategy for rotating outbound phone numbers

Available options:
random,
sequential,
round_robin
scheduled_at
string<date-time> | null
start_time
string | null

Daily start time in HH:MM format

end_time
string | null

Daily end time in HH:MM format

max_calls_per_day
integer | null

Capped by billing tier

Required range: x >= 1
working_days
integer[] | null

1=Mon ... 7=Sun

retry_failed
boolean | null

Response

Request completed successfully

Response body