ConferenceParticipants
List of all the participants in an active conference
Table-Specific Information
Select
Twilio allows only a small subset of columns to be used in the WHERE clause of a SELECT query. The provider uses the Twilio api to process WHERE clause conditions built with the following columns and operator: Muted, Hold, Coaching, and ConferenceSid.
- Muted, Hold, Coaching, and ConferenceSid supports = operator.
Participants is a subresource of Conferences and represents a participant who is either connecting to, or actively connected to, a Conference that is not in completed status. This means that the Participants endpoint will not return results for participants whose call has ended, whose associated conference has ended, or whose call has been modified to use new TwiML; i.e. this resource does not return historical participant logs
Select
Note: ConferenceSidSid is required in order to query ConferenceParticipants.
SELECT * FROM ConferenceParticipants WHERE ConferenceSidSid = 'CF5843bda0e992d145a0c989a33e2ba7d0'
Insert
You can use AddParticipants store procedure for this operation.
Update
You can use ModifyParticipants store procedure for this operation.
Delete
Deletes the Participant subresource to remove the participant from the conference who are actively connected or connecting to the conference.
To delete a participant from the conference, you must specify the ConferenceSid and CallSid.
DELETE FROM ConferenceParticipants where CallSid='CA84916e5a00e017d571bc7b1ef043166e' and conferenceSid='CF392ab62a295633aab3b2dc55298480bd'
Columns
| Name | Type | ReadOnly | References | Description |
| CallSid [KEY] | String | True |
The SID of the Call the Participant resource is associated with. | |
| ConferenceSid | String | True |
Conferences.Sid |
The SID of the conference the participant is in. |
| AccountSid | String | True |
The SID of the Account that created the Participant resource. | |
| CallSidToCoach | String | False |
The SID of the participant who is being coached. | |
| Label | String | True |
The user-specified label of this participant, if one was given when the participant was created. | |
| Coaching | Boolean | False |
Whether the participant is coaching another call. | |
| EndConferenceOnExit | Boolean | True |
Whether the conference ends when the participant leaves. | |
| Muted | Boolean | False |
Whether the participant is muted. | |
| Hold | Boolean | False |
Whether the participant is on hold. | |
| StartConferenceOnEnter | Boolean | True |
Whether the conference starts when the participant joins the conference, if it has not already started. | |
| DateCreated | Datetime | True |
Date and time when the resource was created. | |
| DateUpdated | Datetime | True |
Date and time when the resource was updated. | |
| Status | String | False |
The status of the participant's call in a session. The allowed values are queued, connecting, ringing, connected, ringing, failed. | |
| Uri | String | True |
The URI of this resource. | |
| QueueTime | String | True |
The wait time in milliseconds before participant's call is placed. |