Sample - Twilio API
GET/2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}.json

Get a conference participant

Retrieves a participant from a conference. Use AccountSid, ConferenceSid, and CallSid to identify the account, conference, and participant call or label.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

3 parameters
AccountSidstringrequired
The account SID that created the participant resource. Must be a 34-character SID matching the `AC` prefix format.
ConferenceSidstringrequired
The conference SID containing the participant. Must be a 34-character SID matching the `CF` prefix format.
CallSidstringrequired
The participant's call SID or label; percent-encode non-URL-safe label characters.

1 status code
200Returns the participant, including its account, call, and conference SIDs, coaching and conference controls, call status, timestamps, queue time, and resource URI.
account_sidstringoptional
The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Participant resource.
call_sidstringoptional
The SID of the [Call](https://www.twilio.com/docs/voice/api/call-resource) the Participant resource is associated with.
labelstringoptional
The user-specified label of this participant, if one was given when the participant was created. This may be used to fetch, update or delete the participant.
call_sid_to_coachstringoptional
The SID of the participant who is being `coached`. The participant being coached is the only participant who can hear the participant who is `coaching`.
coachingbooleanoptional
Whether the participant is coaching another call. Can be: `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.
conference_sidstringoptional
The SID of the conference the participant is in.
date_createdstringoptional
The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
date_updatedstringoptional
The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
end_conference_on_exitbooleanoptional
Whether the conference ends when the participant leaves. Can be: `true` or `false` and the default is `false`. If `true`, the conference ends and all other participants drop out when the participant leaves.
mutedbooleanoptional
Whether the participant is muted. Can be `true` or `false`.
holdbooleanoptional
Whether the participant is on hold. Can be `true` or `false`.
start_conference_on_enterbooleanoptional
Whether the conference starts when the participant joins the conference, if it has not already started. Can be: `true` or `false` and the default is `true`. If `false` and the conference has not started, the participant is muted and hears background music until another participant starts the conference.
statusstringoptional
The status of the participant's call in a session. Can be: `queued`, `connecting`, `ringing`, `connected`, `complete`, or `failed`.
Allowed:queuedconnectingringingconnectedcompletefailed
queue_timestringoptional
The wait time in milliseconds before participant's call is placed. Only available in the response to a create participant request.
uristringoptional
The URI of the resource, relative to `https://api.twilio.com`.

Error handling

AccountSid must be a 34-character SID beginning with AC, and ConferenceSid must be a 34-character SID beginning with CF. CallSid must identify the participant by call SID or URL-encoded label.