v1

latestOpenAPI 3.0.3raw.githubusercontent.com2024-06-11720209.3 KB
Webhook Controller

Find Webhook

Fetch Webhook configuration

get/webhook/find/{instance}

Path parameters

instancestring required

ID of the instance to connect

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"
  ]
}