Conference
![]() |
Creates a conference bridge that other callers can join. |
Supported Script Types
![]() |
Phone |
Properties
Property | Details |
---|---|
ConferenceIDVar |
A variable that receives a unique conference identifier. Callers can use this ID to join a conference. |
NumParticipants | When callers join the conference, the OnJoin interrupt event will trigger (if scripted). When this happens, the NumParticipants variable will be updated with the current number of conference participants.The current CXone implementation limits conference sizes to 3 parties. |
ParticipantIDVar |
When callers join the conference, the OnJoin interrupt event will trigger (if scripted). When this happens, the ParticipantID var will contain the contact ID |
Branches
Branch | Details |
---|---|
Default | Path taken unless the script meets a condition that requires it to take one of the other branches. It is also taken if the other branches are not defined. |
OnJoin | Path taken when a new participant joins the conference call. This type of branch condition is known as an Interrupt event since it will trigger "out of context". This means, if this condition is scripted, when a caller joins the conference, whatever the script was doing will be interrupted and the On Join branch condition will be followed. |
OnLeave | Path taken when a participant leaves the conference call either because they hung up or because the Leave action was executed. This type of branch condition is known as an Interrupt event since it will trigger "out of context". This means that if this branch condition is scripted, when a caller leaves the conference, whatever the script was doing will be interrupted and the On Leave branch condition will be followed. |
Error | Path taken when the action fails to execute properly. |
Tips & Tricks
- To leave a conference call, use the Leave action.
- A host caller initiates a conference call (which generates a Conference ID).
- Subsequent callers may join the conference call using the JOIN action by providing the unique conference ID obtained in the original Conference action.
- For one possible method to communicate this ID to other call scripts, see Putvalue and Getvalue.
- If you want to use the Conference action, it is helpful for simple bridges of three or fewer callers.
- The Conference action is not used in myAgent when conferencing other callers because there is a built-in conferencing tool.
- The built-in conferencing tool in myAgent has the same limitations as the Callback action.
Phone Script Example Using Conference
Because Conference is used so infrequently, the recommended best practice is to work with NICE CXone Professional Services if you want to use it in a script. As such, no sample scripts will be provided here.