v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
Call control

Retrieve a call

Returns the call identified by id, including its current event and timestamps.

get/v1/calls/{id}

Path parameters

idstring uuid required

The uuid of the call.

Response

Returns the call.

successboolean required

Indicates whether the request was successful.

Example response

{
  "call": {
    "uuid": "5dccb6b0-f35c-488c-867b-86fb012c4415",
    "id": "5dccb6b0-f35c-488c-867b-86fb012c4415",
    "event_type": "call_setup",
    "event_time": "2025-09-22T12:56:38.547Z",
    "event_payload": {
      "type": "audio",
      "payload": {
        "status": "completed",
        "playback_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
      }
    },
    "from": "+18045961058",
    "to": "17653889567",
    "call_started": "2025-09-22T12:56:38.547Z",
    "tag": "marketing-campaign"
  },
  "success": true
}