Enables agents to create a scheduled callback from a third-party application, such as a CRM, via the API. Agents are identified by their email in the agent field.
POST /api/task/v1/scheduled_callbacks
All parameters are valid and the Scheduled Callback was created
application/json
{
"id": 1
}
Was this page helpful?
curl -X POST \
--url 'https://{cluster_id}.voiso.com/api/task/v1/scheduled_callbacks' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer token: Authorization: Bearer token6' \
-H 'Content-Type: application/json' \
--data-raw '{
"contact_number": "1234567890",
"agent": "agent@email.com",
"time_zone": "Asia/Almaty",
"scheduled_time": "2024-01-01T10:00:00Z",
"context_notes": "Customer was busy, asked to callback later",
"cid_group": "CID group for Abc region",
"related_call_id": "046296f8-ac21-4c02-a85d-92a6578dd2ea",
"external_contact_id": "2",
"external_system_id": "Abc CRM"
}'