Conference Participants Management
A Participant is a single caller that is currently connected to a running conference. It is idefiable [Ma1] by its CallSid.
/2012-04-24/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}
Property | Description |
CallSid | A string that uniquely identifies a participant. |
ConferenceSid | A string that uniquely identifies the conference this participant is currently connected to. |
DateCreated | The date that this participant was created. |
DateUpdated | The date that this particpant was last updated. |
AccountSid | The unique id of the Account that created this call. |
Muted | A flag that tells if the participant is currently muted or not (true or false)? |
StartConferenceOnEnter | Flag to determine if StartConferenceOnEnter was set for this participant (true or false)? |
EndConferenceOnExit | Flag to determine if EndConferenceOnExit flag was set for this participant (true or false)? |
Uri | The URI for this account, relative to https://calls.teleapi.net/call/2012-04-24/ . |
HTTP GET. Returns the representation of a Participant resource, including the properties above.
HTTP POST to a Participant to mute/unmute a live Participant, we make an HTTP POST request to a live Participant instance resource URI:
/2012-04-24/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}
or
/2012-04-24/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}.json
The following parameters are available for you to POST request:
Parameter | Description |
Mute | Set to true or false. Setting this parameter to true will mute the call. Setting this parameter to false will unmute the call |
Last modified 2yr ago