Catalog Service events

Overview

Webhook events related to the creation, update, and deletion of a catalog.

Available events

Event typeEvent schema
catalog.created
Copy
Copied
{
  "categoryIds": [
    "String"
  ],
  "description": "Map",
  "id": "String",
  "metadata": {
    "createdAt": "String",
    "modifiedAt": "String",
    "version": "Number"
  },
  "name": "Map",
  "publishedSites": [
    "String"
  ],
  "status": "String",
  "visibility": {
    "from": "String",
    "to": "String",
    "visible": "Boolean"
  }  
}
catalog.updated
Copy
Copied
{
  "categoryIds": [
    "String"
  ],
  "description": "Map",
  "id": "String",
  "metadata": {
    "createdAt": "String",
    "modifiedAt": "String",
    "version": "Number"
  },
  "name": "Map",
  "publishedSites": [
    "String"
  ],
  "status": "String",
  "visibility": {
    "from": "String",
    "to": "String",
    "visible": "Boolean"
  }  
}
catalog.deleted
Copy
Copied
{
  "id": "String"
}