onOperationCreated( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when an operation is created.

Method Declaration
Copy
function wixRestaurantsOperations_onOperationCreated(
  event: OperationCreated,
): void;
Method Parameters
eventOperationCreated
onOperationCreated example
JavaScript
export function wixRestaurantsOperations_onOperationCreated(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onOperationDeleted( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when an operation is deleted.

Method Declaration
Copy
function wixRestaurantsOperations_onOperationDeleted(
  event: OperationDeleted,
): void;
Method Parameters
eventOperationDeleted
onOperationDeleted example
JavaScript
export function wixRestaurantsOperations_onOperationDeleted(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onOperationUpdated( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when an operation is updated.

Method Declaration
Copy
function wixRestaurantsOperations_onOperationUpdated(
  event: OperationUpdated,
): void;
Method Parameters
eventOperationUpdated
onOperationUpdated example
JavaScript
export function wixRestaurantsOperations_onOperationUpdated(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onAvailabilityExceptionCreated( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Method Declaration
Copy
function wixRestaurantsV1_onAvailabilityExceptionCreated(
  event: AvailabilityExceptionCreated,
): void;
Method Parameters
eventAvailabilityExceptionCreated
onAvailabilityExceptionCreated example
JavaScript
export function wixRestaurantsV1_onAvailabilityExceptionCreated(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onAvailabilityExceptionDeleted( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Method Declaration
Copy
function wixRestaurantsV1_onAvailabilityExceptionDeleted(
  event: AvailabilityExceptionDeleted,
): void;
Method Parameters
eventAvailabilityExceptionDeleted
onAvailabilityExceptionDeleted example
JavaScript
export function wixRestaurantsV1_onAvailabilityExceptionDeleted(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onAvailabilityExceptionUpdated( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when an availability exception is updated.

Method Declaration
Copy
function wixRestaurantsV1_onAvailabilityExceptionUpdated(
  event: AvailabilityExceptionUpdated,
): void;
Method Parameters
eventAvailabilityExceptionUpdated
onAvailabilityExceptionUpdated example
JavaScript
export function wixRestaurantsV1_onAvailabilityExceptionUpdated(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onFulfillmentMethodCreated( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when a fulfillment method is created.

Method Declaration
Copy
function wixRestaurants_onFulfillmentMethodCreated(
  event: FulfillmentMethodCreated,
): void;
Method Parameters
eventFulfillmentMethodCreated
onFulfillmentMethodCreated example
JavaScript
export function wixRestaurants_onFulfillmentMethodCreated(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onFulfillmentMethodDeleted( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when a fulfillment method is deleted.

Method Declaration
Copy
function wixRestaurants_onFulfillmentMethodDeleted(
  event: FulfillmentMethodDeleted,
): void;
Method Parameters
eventFulfillmentMethodDeleted
onFulfillmentMethodDeleted example
JavaScript
export function wixRestaurants_onFulfillmentMethodDeleted(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?