Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt

Use this file to discover all available pages before exploring further.

When it fires

Emitted before the soft-delete write so the event still fans out to all other endpoints. The deleted endpoint itself will not receive this event — its row is already on its way out.

Payload

{
    type: 'webhook.deleted',
    data: {
        webhook: {
            id: string
            name: string
            url: string
        }
    }
}

Example

{
    "type": "webhook.deleted",
    "data": {
        "webhook": {
            "id": "0192a1b2-c3d4-7000-8000-0000000000d0",
            "name": "PagerDuty bridge",
            "url": "https://events.pagerduty.com/integration/abc/enqueue"
        }
    }
}