List conference recordings
GET/texml/Accounts/:account_sid/Conferences/:conference_sid/Recordings
Lists conference recordings
Request
Path Parameters
account_sid stringrequired
The id of the account the resource belongs to.
conference_sid stringrequired
The ConferenceSid that uniquely identifies a conference.
Responses
200: Multiple conference recording resources.
- application/json
404: Resource not found
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/texml/Accounts/:account_sid/Conferences/:conference_sid/Recordings' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"participants": [],
"end": 0,
"first_page_uri": "/v2/texml/Accounts/61bf923e-5e4d-4595-a110-56190ea18a1b/Conferences/6dc6cc1a-1ba1-4351-86b8-4c22c95cd98f/Recordings.json?page=0&pagesize=20",
"next_page_uri": null,
"page": 0,
"page_size": 20,
"start": 0,
"uri": "/v2/texml/Accounts/61bf923e-5e4d-4595-a110-56190ea18a1b/Conferences/6dc6cc1a-1ba1-4351-86b8-4c22c95cd98f/Recordings.json?page=0&pagesize=20"
}
{
"errors": [
{
"detail": "Resource not found"
}
]
}