Conference Participants

Q: How do you list all participants inside a specific FreeClimb conference?
A: Send a GET request to /Accounts/{accountId}/Conferences/{conferenceId}/Participants.

Q: How do you fetch details for an individual participant in a conference?
A: Send a GET request to /Accounts/{accountId}/Conferences/{conferenceId}/Participants/{callId} using the conference ID and the participant's Call ID.

Q: How do you manage or update an individual participant in a conference?
A: Send a POST request to /Accounts/{accountId}/Conferences/{conferenceId}/Participants/{callId} with parameters like talk or listen to mute, unmute, or adjust participant permissions.

Q: How do you remove a participant from an active conference?
A: Send a DELETE request to /Accounts/{accountId}/Conferences/{conferenceId}/Participants/{callId}.

A Participant is a subresource of a Conference resource and represents a Call currently connected to a particular Conference.

Resource properties

PropertyTypeDescription
uristringThe URI for this participant resource, relative to the API base URL.
dateCreatedstring date-timeThe date that this resource was created (GMT), in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT).
dateUpdatedstring date-timeThe date that this resource was last updated (GMT), in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT).
dateCreatedISOstring date-timeDate that this resource was created (UTC) in RFC3339 format (e.g., 2024-10-09T15:05:03.358Z).
dateUpdatedISOstring date-timeDate that this resource was last updated (UTC) in RFC3339 format (e.g., 2024-10-09T15:05:03.358Z).
revisionintegerRevision count for the resource. Count is set to 1 on creation and is incremented with every update.
callIdstringID of the Call associated with this Participant.
conferenceIdstringID of the Conference this Participant is in.
accountIdstringID of the Account that created this Participant.
talkbooleanTrue if this Participant has talk privileges in the Conference. False otherwise.
listenbooleanTrue if this Participant has listen privileges in the Conference. False otherwise.
startConfOnEnterbooleanTrue if this Participant joining the Conference caused the Conference to start (status = inProgress). False otherwise.