Retrieve a call recording
GET/recordings/:id
Retrieves the details of an existing call recording.
Request
Path Parameters
id stringrequired
ID of the recording to retrieve
Responses
200: Call recording response
- application/json
401: Unauthorized
404: Resource not found
422: Unprocessable entity. Can be caused by invalid UUID format
Request samples
curl -L 'https://api.telnyx.com/recordings/:id' \
-H 'Accept: application/json'
Response samples
{
"data": {
"id": "string",
"record_type": "string",
"call": {
"start_time": "string",
"end_time": "string",
"duration": 0,
"to": "string",
"from": "string",
"telnyx_session_uuid": "string",
"connection_id": "string"
},
"download_urls": {
"wav": "string"
},
"created_at": "string",
"updated_at": "string"
}
}