v1
latestOpenAPI 3.0.02026-07-2482421001.1 KBOrg Level Webhooks
List webhook events
This API retrieves a list of events configured for a webhook using the webhook's universally unique identification code (UUID).
You can find a list of supported org-level event types and their sample notifications in the Org-level webhook guide.
get/webhook/{webhook_uuid}/events
Path parameters
webhook_uuidstring uuid required
Example:9be5c090-7dd6-465b-950e-885b95e1863a
The unique identification identifier of the webhook.
Response
OK
Example response
{
"status": "200",
"message": "OK",
"response": {
"events": [
{
"description": "Trigger when a document failed in verification.",
"uuid": "9be5c090-7dd6-465b-950e-885b95e1863a",
"is_active": true,
"name": "event_webhook",
"reason": "event_webhook",
"type": "ISSUE",
"severity": "HIGH"
}
]
}
}