Search + K

Command Palette

Search for a command to run...

Sign In

Fetch an instance of a participant

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

Fetch an instance of a participant

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created the Participant resource to fetch.

`AC${string}`
ConferenceSid required

The SID of the conference with the participant to fetch.

`CF${string}`
CallSid required

The Call SID or label of the participant to fetch. Non URL safe characters in a label must be percent encoded, for example, a space character is represented as %20.

string

Responses

200 application/json

OK

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

The status of the participant's call in a session. Can be: queued, connecting, ringing, connected, complete, or failed.

type ParticipantEnumStatus = "queued" | "connecting" | "ringing" | "connected" | "complete" | "failed"
;
queue_time?: string | null;
uri?: string | null;
}