From Bright Pattern Documentation
Jump to: navigation, search
Created page with "<translate> =completeInteraction= Completes an interaction with a provided ID (i.e., removes it from the user’s interactions list). If the ''interactionId'' isn't specified..."
 
Updated via BpDeleteTranslateTags script
 
Line 1: Line 1:
<translate>
 
=completeInteraction=
=completeInteraction=


Line 39: Line 39:


''null''
''null''
</translate>

Latest revision as of 04:01, 29 May 2024

completeInteraction

Completes an interaction with a provided ID (i.e., removes it from the user’s interactions list). If the interactionId isn't specified, this method will complete the currently active interaction.

Request

Syntax

completeInteraction(ineractionId?: string): Promise<OperationResult<null>>

Parameters

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

Example Request

    completeInteractionButton.onclick = () => {

        const itemId = completeInteractionIdInput.value

        adApi.completeInteraction(itemId)

    }

Return Value

null

< Previous | Next >