v2

latestOpenAPI 3.0.02026-07-26365590.3 KB
Calls

Get call recording

Returns the recording metadata for a call. Returns 404 if the call is in a workspace outside the API key scope.

get/v1/calls/{id}/recording

Path parameters

idstring required

Response

The call recording metadata

idstring required

Unique identifier of the recording

durationnumber required

Duration of the recording in seconds

startTimestring date-time required

Start time of the recording

hasTranscriptionboolean required

Indicates if a transcription exists for this recording

transcriptionStatus'PENDING' | 'IN_PROGRESS' | 'FAILED' | 'COMPLETED' nullable required

Status of the transcription if it exists

Example response

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "duration": 245,
  "startTime": "2024-01-15T10:00:00Z",
  "hasTranscription": true,
  "transcriptionStatus": "COMPLETED"
}