Search.../

onBackInStockNotificationRequestUpdated( )

Developer Preview

Triggered when a back in stock notification request is updated.

Syntax

function wixEcom_onBackInStockNotificationRequestUpdated(event: BackInStockNotificationRequestUpdated): void

onBackInStockNotificationRequestUpdated Parameters

NAME
TYPE
DESCRIPTION
event
Optional
BackInStockNotificationRequestUpdated

Returns

This function does not return anything.

Return Type:

void

Was this helpful?

onBackInStockNotificationRequestUpdated example

Copy Code
1
2 export function wixEcom_onBackInStockNotificationRequestUpdated(event) {
3 const eventId = event.metadata.id
4 const entityId = event.entity._id;
5 }
6
7