For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
cXMLREST API
cXMLREST API
  • Core
    • Overview
    • Authorization
    • Error codes
    • Paging
    • REST client SDKs
  • Compatibility REST API
      • GETList Conference Recordings
      • GETGet a Conference Recording
      • POSTUpdate a Conference Recording
      • DELDelete a Conference Recording
LogoLogoSignalWire Docs
Log inSign up
Support
Compatibility REST APIConference Recordings

List Conference Recordings

|View as Markdown|Open in Claude|
GET
https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Conferences/:ConferenceSid/Recordings
GET
/api/laml/2010-04-01/Accounts/:AccountSid/Conferences/:ConferenceSid/Recordings
$curl https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences/ConferenceSid/Recordings \
> -u "<project_id>:<api_token>"
1{
2 "uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Conferences/43bb71ee-553f-4074-bb20-8e2747647cce/Recordings?PageToken=PA1234",
3 "first_page_uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Conferences/43bb71ee-553f-4074-bb20-8e2747647cce/Recordings",
4 "next_page_uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Conferences/43bb71ee-553f-4074-bb20-8e2747647cce/Recordings?Page=1&PageToken=PA5678",
5 "previous_page_uri": null,
6 "page": 0,
7 "page_size": 50,
8 "recordings": [
9 {
10 "sid": "19e436af-5688-4307-b03b-bdb2b42b8142",
11 "account_sid": "720796a0-8ee9-4350-83bd-2d07a3121f1e",
12 "api_version": "2010-04-01",
13 "call_sid": null,
14 "conference_sid": "43bb71ee-553f-4074-bb20-8e2747647cce",
15 "channel": "1",
16 "channels": "1",
17 "date_created": "Tue, 25 Sep 2018 23:00:00 +0000",
18 "date_updated": "Wed, 26 Sep 2018 23:00:04 +0000",
19 "start_time": "Tue, 25 Sep 2018 23:00:00 +0000",
20 "end_time": "Wed, 26 Sep 2018 23:00:04 +0000",
21 "duration": 4,
22 "price": "-0.0025",
23 "price_unit": "USD",
24 "source": "Conference",
25 "status": "queued",
26 "error_code": null,
27 "uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Conferences/43bb71ee-553f-4074-bb20-8e2747647cce/Recordings/19e436af-5688-4307-b03b-bdb2b42b8142.json",
28 "subresource_uris": {
29 "transcriptions": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Recordings/19e436af-5688-4307-b03b-bdb2b42b8142/Transcriptions.json"
30 },
31 "encryption_details": null,
32 "trim": "do-not-trim"
33 }
34 ]
35}

List all recordings for a conference.

Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice.

Learn more about API scopes.

Was this page helpful?
Previous

Get a Conference Recording

Next
Built with

Authentication

AuthorizationBasic
SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ```

Path parameters

AccountSidstringRequiredformat: "uuid"
The unique identifier for the account that created this conference.
ConferenceSidstringRequiredformat: "uuid"
The unique identifier for the conference this participant is in.

Query parameters

DateCreatedstringOptional

Shows recordings that were created on the date provided. Format: YYYY-MM-DD.

DateCreated<stringOptional

Shows recordings that were created before the date provided. Format: YYYY-MM-DD.

DateCreated>stringOptional

Shows recordings that were created after the date provided. Format: YYYY-MM-DD.

PageintegerOptional>=0Defaults to 0

The page number to retrieve. Page numbers are zero-indexed, so the first page is 0.

PageSizeintegerOptional1-1000Defaults to 50
The number of results to return per page. The default is 50, and the maximum is 1000.
PageTokenstringOptional
A token used to retrieve a specific page of results. Must start with PA or PB.

Response

The request has succeeded.
uristring
The URI of the current page.
first_page_uristring
The URI of the first page.
next_page_uristring or null
The URI of the next page.
previous_page_uristring or null
The URI of the previous page.
pageinteger
The current page number.
page_sizeinteger
The number of items per page.
recordingslist of objects
List of recordings.

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error
422
Unprocessable Entity Error

SignalWire Basic Authentication using Project ID and API Token.

The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password.

Example:

Authorization: Basic base64(project_id:token)