Search + K

Command Palette

Search for a command to run...

Sign In

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

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

Retrieve a list of participants 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 Participant resources to read.

`AC${string}`
ConferenceSid required

The SID of the conference with the participants to read.

`CF${string}`

query Query Parameters

Name Type
Muted

Whether to return only participants that are muted. Can be: true or false.

boolean
Hold

Whether to return only participants that are on hold. Can be: true or false.

boolean
Coaching

Whether to return only participants who are coaching another call. Can be: true or false.

boolean
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

{
participants?: ApiV2010AccountConferenceParticipant
interface ApiV2010AccountConferenceParticipant {
account_sid?: `AC${string}` | null;
call_sid?: `CA${string}` | null;
label?: string | null;
call_sid_to_coach?: `CA${string}` | null;
coaching?: boolean | null;
conference_sid?: `CF${string}` | null;
date_created?: string | null;
date_updated?: string | null;
end_conference_on_exit?: boolean | null;
muted?: boolean | null;
hold?: boolean | null;
start_conference_on_enter?: boolean | null;
status?: ParticipantEnumStatus;
queue_time?: string | null;
uri?: 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;
}