v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
TeXML REST Commands

Fetch recordings for a call

Returns recordings for a call identified by call_sid.

get/texml/Accounts/{account_sid}/Calls/{call_sid}/Recordings.json

Path parameters

account_sidstring required

The id of the account the resource belongs to.

call_sidstring required

The CallSid that identifies the call to update.

Response

Successful Get Call Recordings Response

endinteger

The number of the last element on the page, zero-indexed.

first_page_uristring uri

Relative uri to the first page of the query results

next_page_uristring

Relative uri to the next page of the query results

pageinteger

Current page number, zero-indexed.

page_sizeinteger

The number of items on the page

previous_page_uristring uri

Relative uri to the previous page of the query results

startinteger

The number of the first element on the page, zero-indexed.

uristring

The URI of the current page.

Example response

{
  "end": 19,
  "next_page_uri": "/v2/texml/Accounts/61bf923e-5e4d-4595-a110-56190ea18a1b/Calls.json?Page=1&PageSize=1",
  "page_size": 20,
  "recordings": [
    {
      "account_sid": "61bf923e-5e4d-4595-a110-56190ea18a1b",
      "call_sid": "v3:KBnLO0ZK3DhKM5s7bE9VluaSmKsOchKht_fUYvxcp8ysbmzCCtpkmA",
      "channels": 1,
      "conference_sid": "cd5a70f4-759b-4d5e-9c06-88c00f16f3c1",
      "date_created": "2023-08-11T19:12:11Z",
      "date_updated": "2023-08-11T19:12:11Z",
      "duration": "12",
      "media_url": "http://recordings.com/mp3/filename.mp3",
      "sid": "e9cea0be-7dbd-4b98-98b1-c0089d9d43b0",
      "start_time": "2023-08-11T19:12:11Z",
      "status": "paused",
      "uri": "/v2/texml/Accounts/61bf923e-5e4d-4595-a110-56190ea18a1b/Recordings/b08f0fa1-a32c-4218-b3b5-9cf78941ccac.json"
    }
  ],
  "uri": "/v2/texml/Accounts/61bf923e-5e4d-4595-a110-56190ea18a1b/Recordings.json?Page=0&PageSize=1"
}