Skip to main content

Call Flows

Call Flows define the automated routing logic for incoming calls. You can create complex IVR trees, route calls to teams, play audio, and integrate with external services.

Endpoints

MethodEndpointDescription
GET/call-flowsList all call flows
GET/call-flows/:idGet call flow details
POST/call-flowsCreate a new call flow
PATCH/call-flows/:idUpdate a call flow
DELETE/call-flows/:idDelete a call flow

List Call Flows

GET /call-flows

Response

{
"data": [
{
"_id": "cf_abc123",
"name": "Main IVR",
"status": "active",
"nodes": [],
"createdAt": "2026-01-15T08:30:00Z"
}
]
}
info

Detailed request/response schemas will be added based on the API implementation.