Skip to main content
GET
/
v1
/
call-logs
/
{callLogId}
/
recording
curl -OJ "https://api.telzino.com/v1/call-logs/123e4567-e89b-12d3-a456-426614174000/recording" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Binary audio/mpeg data

Headers:
  Content-Type: audio/mpeg
  Content-Disposition: attachment; filename="recording-123e4567.mp3"
Returns the audio recording file for a completed call. The response is a binary audio/mpeg file with a Content-Disposition: attachment header.

Path Parameters

callLogId
string
required
The unique identifier of the call log (UUID format)
curl -OJ "https://api.telzino.com/v1/call-logs/123e4567-e89b-12d3-a456-426614174000/recording" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Binary audio/mpeg data

Headers:
  Content-Type: audio/mpeg
  Content-Disposition: attachment; filename="recording-123e4567.mp3"
Recordings are only available for calls where recording was enabled via the agent’s config.enable_recording setting. If recording was not enabled, this endpoint returns a 404 error.