List all call recordings
GET/recordings
Returns a list of your call recordings.
Request
Query Parameters
Default value: 1
Page number of results to load
Possible values: <= 1000
Default value: 20
Number of results per page
If present, recordings will be filtered to those with a matching call_id. Matching is case-sensitive
If present, recordings will be filtered to those with a matching from
attribute. Matching is case-sensitive
If present, recordings will be filtered to those with a matching to
attribute. Matching is case-sensitive
If present, recordings will be filtered to those with a matching telnyx_session_uuid
attribute. Matching is case-sensitive
If present, recordings will be filtered to those with a matching connection_id
attribute. Matching is case-sensitive
Responses
200: Call Recording response
- application/json
401: Unauthorized
422: Unprocessable entity. Can be caused by improper use of filters or nodes.
Request samples
curl -L 'https://api.telnyx.com/recordings' \
-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"
}
]
}