From Bright Pattern Documentation
< 5.19:AgentDesktop-client-side-javascript-api-specification
Revision as of 13:57, 16 September 2022 by Katherine (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
• 5.19

<translate>

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



</translate>

< Previous | Next >