# List All Conferences Use this endpoint for the [Conference](./index.mdx) method to read all of the conferences that are associated with your SignalWire account. This will be returned as a list of conferences. ## Parameters | Parameter | Description | | :-- | : | | DateCreated optional | Shows conferences that were created on the date provided. Format as **YYYY-MM-DD** in UTC. You can also append < or > to return a range of conferences. For example, use DateCreated< to return conferences created on or before midnight of the date, or DateCreated> to return conferences created on or after midnight of the date. | | DateUpdated optional | Shows conferences that were updated on the date provided. Format as **YYYY-MM-DD** in UTC. You can also append < or > to return a range of conferences. For example, use DateCreated< to return conferences updated on or before midnight of the date, or DateCreated> to return conferences updated on or after midnight of the date. | | FriendlyName optional | Shows conferences that exactly match the friendly name provided. | | Status optional | The status of the conference. Possible values are init, in-progress, or completed. | ## Request 200 OK
json { conferences: [ { 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: null, region: us1, status: in-progress, subresource_uris: { participants: /api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472ca/Participants.json, recordings: /api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472ca/Recordings.json }, uri: /api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472ca.json } ], end: 0, first_page_uri: /api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences.json?PageSize=1&Page=0, next_page_uri: /api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences.json?PageSize=1&Page=1, page: 0, page_size: 1, previous_page_uri: /api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences.json?PageSize=1&Page=0, start: 0, uri: /api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences.json?PageSize=1, }