Webhook Event Catalog

GET/api/webhooks/events

The authoritative catalog: 124 events across 22 resource groups (invoice_created, lead_status_changed, ticket_reply_created, kb_article_created...).

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area
curl -X GET "https://yoursite.com/api/webhooks/events" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

HTTP/1.1 200 OK
{
  "total_events": 124,
  "wildcard": "*",
  "groups": {
    "customers": {
      "customer_created": "Customer created",
      "customer_updated": "Customer updated",
      "customer_deleted": "Customer deleted"
    },
    "invoices": {
      "invoice_created": "Invoice created",
      "invoice_paid": "Invoice fully paid",
      "invoice_status_changed": "Invoice status changed"
    },
    "tickets": {
      "ticket_created": "Ticket created",
      "ticket_reply_created": "Reply added to ticket"
    },
    "system": {
      "webhook_created": "Webhook created",
      "webhook_updated": "Webhook updated",
      "webhook_deleted": "Webhook deleted"
    }
  }
}
MethodGET
Path/api/webhooks/events
GroupWebhooks
Sincev3.0.0
Defined inmodules/api/controllers/Webhooks.php