Skip to main content
POST
/
v1
/
talk
/
create-bulk-phone-call
Create outbound phone calls in bulk
curl --request POST \
  --url https://assistant-01.in.rapida.ai/v1/talk/create-bulk-phone-call \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "phoneCalls": [
    {
      "assistant": {
        "assistantId": "2227823180112723968",
        "version": "latest"
      },
      "toNumber": "+14155550123",
      "fromNumber": "+14155550100",
      "metadata": {
        "customerId": "cust_123"
      }
    },
    {
      "assistant": {
        "assistantId": "2227823180112723968",
        "version": "latest"
      },
      "toNumber": "+14155550124",
      "metadata": {
        "customerId": "cust_124"
      }
    }
  ]
}
'
{
  "code": 200,
  "success": true,
  "data": [
    {
      "id": "2230142097179373568"
    },
    {
      "id": "2230142097179373569"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://doc.rapida.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Project API key from Rapida credentials.

Headers

x-client-source
enum<string>
default:sdk

Client source identifier. SDK clients send this automatically.

Available options:
sdk
x-auth-id
string

Optional user identifier to propagate with the request.

Body

application/json
phoneCalls
object[]
required
Minimum array length: 1

Response

Bulk outbound phone call request accepted.

code
integer<int32>
Example:

200

success
boolean
Example:

true

data
object[]
error
object