Retrieve a Participant
GET/Accounts/:AccountSid/Conferences/:ConferenceSid/Participants/:CallSid
Retrieve a single Participant.
Permissions
The API token must include the following scopes: Voice.
Request
Path Parameters
The unique identifier for the account that created this conference.
The unique identifier for the conference this participant is in.
The unique identifier for the Participant call connected to this conference.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
The unique identifier for the account that created this conference.
The unique identifier for the Participant call connected to this conference.
The unique identifier of the participant who is being coached. The participant being coached is the only participant who can hear the participant who is coaching.
Whether the participant is coaching another call. Possible values are true or false. If not present, defaults to false unless call_sid_to_coach is defined. If true, call_sid_to_coach must be defined.
falseThe unique identifier for the conference this participant is in.
The date, in RFC 2822 format, this conference participant was created.
Mon, 24 Sept 2018 21:00:00 +0000The status of the conference call (?)
Possible values: [completed, in-progress]
The date, in RFC 2822 format, this conference participant was updated.
Tue, 25 Sept 2018 20:00:00 +0000Whether or not a conference ends when a participant leaves the conference call. Possible values are true or false.
Whether or not a participant is muted. Possible values are true or false.
Whether or not a participant is on hold. Possible values are true or false.
Whether or not a conference will begin when this participant enters the conference call. Possible values are true or false.
The URI for this conference participant.
/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472pa/Participants/b3877c40-da60-4998-90ad-b792e98472ca.json{
"account_sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"call_sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"call_sid_to_coach": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"coaching": false,
"conference_sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"date_created": "Mon, 24 Sept 2018 21:00:00 +0000",
"status": "completed",
"date_updated": "Tue, 25 Sept 2018 20:00:00 +0000",
"end_conference_on_exit": true,
"muted": true,
"hold": true,
"start_conference_on_enter": true,
"uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472pa/Participants/b3877c40-da60-4998-90ad-b792e98472ca.json"
}