From Bright Pattern Documentation
Jump to: navigation, search
(Created page with "<translate> =destroyCallConference= Ends an active conference call. Note that this method ends the call for all parties. ==Request== ''Syntax'' {| class="wikitable" |destro...")
 
(Updated via BpDeleteTranslateTags script)
 
Line 1: Line 1:
<translate>
+
 
 
=destroyCallConference=
 
=destroyCallConference=
  
Line 39: Line 39:
  
 
''null''
 
''null''
 
 
 
 
 
</translate>
 

Latest revision as of 04:01, 29 May 2024

• 5.19


destroyCallConference

Ends an active conference call. Note that this method ends the call for all parties.

Request

Syntax

destroyCallConference(interactionId?: string): Promise<OperationResult<null>>

Parameters

Parameter Parameter Values Data Type Optional/Required Description
interactionId String Optional The ID of the specific conference call that you wish to end. If not specified, the active interaction will be used.

Example Request

    destroyCallConferenceButton.onclick = () => {

        const itemId = conferenceInteractionIdInput.value

        adApi.destroyCallConference(itemId)

    }

Return Value

null

< Previous | Next >