v46

latestOpenAPI 3.0.3raw.githubusercontent.com2025-05-151340367.2 KB
Webhook Controller

Find Webhook

Fetch Webhook configuration

get/webhook/find/{instance}

Path parameters

instancestring required

Name of the instance

Response

Ok

enabledboolean

Indicates whether the webhook is enabled.

urlstring

The URL of the webhook.

eventsstring[]

List of events the webhook is subscribed to.

Example response

{
  "enabled": true,
  "url": "https://example.com",
  "events": [
    "APPLICATION_STARTUP"
  ]
}