Events-Catalog

Overview

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

Available events

Event type
Event schema

catalog.created

{
  "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

{
  "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

{
  "id": "String"
}

Last updated

Was this helpful?