Skip to content
Calls
Schedule AI-powered calls through the Kayse AI platform.
Schedule New AI Call
POST/v1/calls
Schedule a new AI call for a specific case within a campaign.
Request Body Fields
| Field | Required | Type | Description |
|---|---|---|---|
campaign_id | true | Integer | Unique campaign identifier |
case_id | true | Integer | Unique case identifier |
Note
The call will be scheduled according to the campaign's configuration, including business hours and callback delays.
Request
bash
curl -X POST 'https://public-api.kayse.ai/v1/calls' \
-H 'X-API-KEY: your_api_key' \
-H 'Content-Type: application/json' \
-d '{
"campaign_id": 123,
"case_id": 456
}'Response
json
{
"campaign_id": 123,
"client_id": 789,
"case_id": 456
}