diff --git a/docs/content/advanced/backend/subscribers/events-list.md b/docs/content/advanced/backend/subscribers/events-list.md index ad60827158..db9f845be5 100644 --- a/docs/content/advanced/backend/subscribers/events-list.md +++ b/docs/content/advanced/backend/subscribers/events-list.md @@ -2072,6 +2072,102 @@ Object of the following format: --- +## Product Category Events + +This section holds all events related to product categories. + +
| +Event Name + | ++Description + | ++Event Data Payload + | +
|---|---|---|
| + +`product-category.created` + + | ++ +Triggered when a product category is created. + + | ++ +Object of the following format: + +```js noReport noCopy +{ + id, // string ID of category +} +``` + + | +
| + +`product-category.updated` + + | ++ +Triggered when a product category is updated. + + | ++ +Object of the following format: + +```js noReport noCopy +{ + id, // string ID of category +} +``` + + | +
| + +`product-category.deleted` + + | ++ +Triggered when a product category is deleted. + + | ++ +Object of the following format: + +```js noReport noCopy +{ + id, // string ID of category +} +``` + + | +