Events - Schema

Overview

Webhook events related to the creation, update, and deletion of custom mixin schemas.

Available events

Event type
Event schema

schema.custom-instance-created

{
    "tenant": "String",
    "type": "String",
    "customInstance": {
        "id": "String",
        "metadata": {},
        "mixins": "Map",
        "name": {
            "name" : "Map"
        },
    }
}

schema.custom-instance-deleted

{
    "tenant": "String",
    "type": "String",
    "id": "String"
}

schema.custom-instance-updated

{
    "tenant": "String",
    "type": "String",
    "customInstance": {
        "id": "String",
        "metadata": {},
        "mixins": "Map",
        "name": {
            "name" : "Map"
        },
    }
}

Last updated

Was this helpful?