Interface ConferencesService
public interface ConferencesService
Conferences Service
-
Method Summary
Modifier and TypeMethodDescriptioncall(CalloutRequestConference parameters) Get Conference InfovoidKick Conference AllvoidkickParticipant(String conferenceId, String callId) Kick Conference ParticipantvoidmanageParticipant(String conferenceId, String callId, ManageConferenceParticipantRequest manageConferenceParticipantRequest) Manage Conference Participant
-
Method Details
-
get
Get Conference InfoReturns information about a conference that matches the provided conference ID.
- Parameters:
conferenceId- The unique identifier of the conference. The user sets this value. (required)- Returns:
- GetConferenceInfoResponse
- Throws:
ApiException- if fails to make API call
-
kickAll
Kick Conference AllRemoves all participants from a conference.
- Parameters:
conferenceId- The unique identifier of the conference. The user sets this value. (required)- Throws:
ApiException- if fails to make API call
-
kickParticipant
Kick Conference ParticipantRemove a specified conference participant from a specified conference.
- Parameters:
conferenceId- The unique identifier of the conference. The user sets this value. (required)callId- The unique identifier of the call. This value is generated by the system. (required)- Throws:
ApiException- if fails to make API call
-
manageParticipant
void manageParticipant(String conferenceId, String callId, ManageConferenceParticipantRequest manageConferenceParticipantRequest) throws ApiException Manage Conference ParticipantManages conference participant in a specified conference: * mute / unmute * put on hold / resume.
- Parameters:
conferenceId- The unique identifier of the conference. The user sets this value. (required)callId- The unique identifier of the call. This value is generated by the system. (required)manageConferenceParticipantRequest- (optional)- Throws:
ApiException- if fails to make API call
-
call
-