Search + K

Command Palette

Search for a command to run...

Sign In

Retrieve a list of conferences belonging to the account used to make the request

GET /2010-04-01/Accounts/{AccountSid}/Conferences.json
Copy endpoint
https://api.twilio.com

Retrieve a list of conferences belonging to the account used to make the request

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created the Conference resource(s) to read.

`AC${string}`

query Query Parameters

Name Type
DateCreated

Only include conferences that were created on this date. Specify a date as YYYY-MM-DD in UTC, for example: 2009-07-06, to read only conferences that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD, to read conferences that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD to read conferences that were created on or after midnight of this date.

string
DateCreated<

Only include conferences that were created on this date. Specify a date as YYYY-MM-DD in UTC, for example: 2009-07-06, to read only conferences that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD, to read conferences that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD to read conferences that were created on or after midnight of this date.

string
DateCreated>

Only include conferences that were created on this date. Specify a date as YYYY-MM-DD in UTC, for example: 2009-07-06, to read only conferences that were created on this date. You can also specify an inequality, such as DateCreated<=YYYY-MM-DD, to read conferences that were created on or before midnight of this date, and DateCreated>=YYYY-MM-DD to read conferences that were created on or after midnight of this date.

string
DateUpdated

Only include conferences that were last updated on this date. Specify a date as YYYY-MM-DD in UTC, for example: 2009-07-06, to read only conferences that were last updated on this date. You can also specify an inequality, such as DateUpdated<=YYYY-MM-DD, to read conferences that were last updated on or before midnight of this date, and DateUpdated>=YYYY-MM-DD to read conferences that were last updated on or after midnight of this date.

string
DateUpdated<

Only include conferences that were last updated on this date. Specify a date as YYYY-MM-DD in UTC, for example: 2009-07-06, to read only conferences that were last updated on this date. You can also specify an inequality, such as DateUpdated<=YYYY-MM-DD, to read conferences that were last updated on or before midnight of this date, and DateUpdated>=YYYY-MM-DD to read conferences that were last updated on or after midnight of this date.

string
DateUpdated>

Only include conferences that were last updated on this date. Specify a date as YYYY-MM-DD in UTC, for example: 2009-07-06, to read only conferences that were last updated on this date. You can also specify an inequality, such as DateUpdated<=YYYY-MM-DD, to read conferences that were last updated on or before midnight of this date, and DateUpdated>=YYYY-MM-DD to read conferences that were last updated on or after midnight of this date.

string
FriendlyName

The string that identifies the Conference resources to read.

string
Status

The status of the resources to read. Can be: init, in-progress, or completed.

type ConferenceEnumStatus = "init" | "in-progress" | "completed"
PageSize

How many resources to return in each list page. The default is 50, and the maximum is 1000.

number
Page

The page index. This value is simply for client state.

number
PageToken

The page token. This is provided by the API.

string

Responses

200 application/json

OK

{
conferences?: ApiV2010AccountConference
interface ApiV2010AccountConference {
account_sid?: `AC${string}` | null;
date_created?: string | null;
date_updated?: string | null;
api_version?: string | null;
friendly_name?: string | null;
region?: string | null;
sid?: `CF${string}` | null;
status?: ConferenceEnumStatus;
uri?: string | null;
subresource_uris?: {} | null;
reason_conference_ended?: ConferenceEnumReasonConferenceEnded;
call_sid_ending_conference?: `CA${string}` | null;
}
[]
;
end?: number;
first_page_uri?: string;
next_page_uri?: string | null;
page?: number;
page_size?: number;
previous_page_uri?: string | null;
start?: number;
uri?: string;
}