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 product is created.
function wixStoresCatalogV1_onProductCreated(event: ProductCreatedEvent): void;
export function wixStoresCatalogV1_onProductCreated(event) {
const eventId = event.metadata.id;
const entityId = event.data.wixStoresCatalogProductCreated._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
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 product is deleted.
function wixStoresCatalogV1_onProductDeleted(event: ProductDeletedEvent): void;
export function wixStoresCatalogV1_onProductDeleted(event) {
const eventId = event.metadata.id;
const entityId = event.data.wixStoresCatalogProductDeleted._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.