Search.../

onServiceOptionsAndVariantsDeleted( )

Developer Preview

Triggered when a serviceOptionsAndVariants object is deleted.

Authorization

Request

This endpoint does not take any parameters

Response Object

Returns an empty object.

Status/Error Codes

Was this helpful?

onServiceOptionsAndVariantsDeleted example

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