Get all recordings of a call

This API endpoint retrieves all the recordings of a specific call.

Endpoint

GET /api/v1/calls/{callId}/recordings

HTTP Method

GET

Path Parameters

Path Parameter

Type

Description

callId

UUID

UUID of the call.

Query Parameters

None

Request Headers

Authorization: Bearer {token}

Request Example
GET /api/v1/calls/0000000-0000-1000-8000-000A95A0E128/recordings
Response Body

JSON

Field

Description

seq

Sequence number, which is ordered according to the start time.

name

Name of the recording.

filename

Name of the recording file (.wav).

Response Example
{
  "recordings": [
    {
      "seq": "0",
      "name": "calls/{callId}/recordings/0",
      "filename": "call-{callId}-recording-0.wav"     
    }
  ]
}