From Bright Pattern Documentation
Created page with "<translate> =rejectInteraction= Reject an incoming interaction. ==Request== ''Syntax'' {| class="wikitable" |rejectInteraction(interactionId?: string): Promise<OperationRes..." |
Updated via BpDeleteTranslateTags script |
||
| Line 1: | Line 1: | ||
=rejectInteraction= | =rejectInteraction= | ||
| Line 38: | Line 38: | ||
''null'' | ''null'' | ||
Latest revision as of 04:01, 29 May 2024
rejectInteraction
Reject an incoming interaction.
Request
Syntax
| rejectInteraction(interactionId?: string): Promise<OperationResult<null>> |
Parameters
| Parameter | Parameter Values | Data Type | Optional/Required | Description |
| interactionId | String | Optional | The ID of the incoming interaction. If the ID is not specified, the active interaction will be tried. |
Example Request
rejectInteractionButton.onclick = () => {
const itemId = activeInteractionIdInput.value
adApi.rejectInteraction(itemId)
}
Return Value
null