Conferences

List All Conferences

The ability to read all of the conferences that are associated with your Account. This will be returned as a list of conferences.

Permissions

The API token must include the following scopes: Voice.

get/Accounts/{AccountSid}/Conferences

Path parameters

AccountSidstring uuid required

The unique identifier for the account that created this conference.

Query parameters

DateCreatedstring

Shows conferences that were created on the date provided.

DateUpdatedstring

Shows conferences that were updated on the date provided.

FriendlyNamestring

A description, up to 64 characters, of the conference room.

Statusstring

The status of this conference.

Response

The request has succeeded.

uristring

The URI of the current page.

first_page_uristring

The URI of the first page.

next_page_uristring

The URI of the next page.

previous_page_uristring

The URI of the previous page.

pageinteger

The current page number.

page_sizeinteger

The number of items per page.

Example response

{
  "uri": "/api/laml/2010-04-01/Accounts?Page=0&PageSize=50",
  "first_page_uri": "/api/laml/2010-04-01/Accounts?Page=0&PageSize=50",
  "next_page_uri": "/api/laml/2010-04-01/Accounts?Page=1&PageSize=50",
  "page_size": 50,
  "conferences": [
    {
      "account_sid": "b3877c40-da60-4998-90ad-b792e98472ca",
      "api_version": "2010-04-01",
      "date_created": "Mon, 24 Sept 2018 21:00:00 +0000",
      "date_updated": "Tue, 25 Sept 2018 20:00:00 +0000",
      "friendly_name": "My Conference Room",
      "sid": "b3877c40-da60-4998-90ad-b792e98472cf",
      "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472cf.json",
      "subresource_uris": {
        "participants": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472cf/Participants.json",
        "recordings": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472cf/Recordings.json"
      }
    }
  ]
}

Changes