Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

List Meta / Deepgram recordings for a call session

GET/v1/calls/sessions/{sessionID}/recordings
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Path parameters
sessionIDstringrequired
call_sessions.id (CRM call record UUID)
Responses
200OK
itemsCallSessionRecordingItem[] | nullrequired
Show properties
Array of CallSessionRecordingItem
call_session_idstring
channel_idstring
completed_atstring
created_atstring
idstringrequired
recording_duration_secondsinteger<int64>
recording_formatstring
recording_urlstring
transcriptstring
transcript_confidencenumber<double>
transcript_languagestring
transcript_wordsany
transcription_errorstring
transcription_statusstring
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
404Not Found
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X GET "/v1/calls/sessions/string/recordings"
Response
{
  "items": [
    {
      "call_session_id": "string",
      "channel_id": "string",
      "completed_at": "string",
      "created_at": "string",
      "id": "string",
      "recording_duration_seconds": 0,
      "recording_format": "string",
      "recording_url": "string",
      "transcript": "string",
      "transcript_confidence": 0,
      "transcript_language": "string",
      "transcript_words": "string",
      "transcription_error": "string",
      "transcription_status": "string"
    }
  ]
}