Search + K

Command Palette

Search for a command to run...

Sign In

Update the properties of the participant

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

Update the properties of the participant

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created the Participant resources to update.

`AC${string}`
ConferenceSid required

The SID of the conference with the participant to update.

`CF${string}`
CallSid required

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

string

Request Body

application/x-www-form-urlencoded
{
Muted?: boolean;
Hold?: boolean;
HoldUrl?: string;
HoldMethod?: "GET" | "POST";
AnnounceUrl?: string;
AnnounceMethod?: "GET" | "POST";
WaitUrl?: string;
WaitMethod?: "GET" | "POST";
BeepOnExit?: boolean;
EndConferenceOnExit?: boolean;
Coaching?: boolean;
CallSidToCoach?: `CA${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;
}