From Bright Pattern Documentation
(Created new topic from branched topic Documentation:ServicePattern:desktop-integration-api-net-version-tutorial:Conference:5.1) |
(Updated via BpDeleteTranslateTags script) |
||
Line 1: | Line 1: | ||
− | + | = Conference= | |
The following code snippet shows how to merge calls into a [[agent-guide/HowtoHostaConference|conference]]. | The following code snippet shows how to merge calls into a [[agent-guide/HowtoHostaConference|conference]]. | ||
Line 132: | Line 132: | ||
<center>[[desktop-integration-api-net-version-tutorial/Transfers|< Previous]] | [[desktop-integration-api-net-version-tutorial/Receivingacall|Next >]]</center> | <center>[[desktop-integration-api-net-version-tutorial/Transfers|< Previous]] | [[desktop-integration-api-net-version-tutorial/Receivingacall|Next >]]</center> | ||
− |
Latest revision as of 04:31, 29 May 2024
Conference
The following code snippet shows how to merge calls into a conference.
- For an conference via consultation, it assumes existence of a held primary call and an active consult call. Execution of the code snippet would be triggered by an explicit user action (e.g., pressing of a Merge button).
- For a single-step conference, it assumes existence of an active primary call and another call attempt initiated by the logged-in user. Execution of the code snippet would be triggered by connection of the second call.
public void MergeCalls(List<Call> calls) {
}
} |
To remove a participant from a conference, the removeParty method from Call should be used as follows:
void RemoveFromConference(string callId, string partyId)
} |
To leave a conference (remove oneself from a conference), use the drop method from Call:
- public void drop();
To end a conference, use the endConference method from Call:
- public void endConference();