# 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...).

- **Group:** Webhooks
- **Since:** v3.0.0
- **Authentication:** `authtoken` header, created under Setup > API > API Management
- **HTML version:** /apiguide/webhooks/get-webhook-events/

## Headers

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `authtoken` | String | **required** | Authentication token, generated from admin area |

## Example request

```bash
curl -X GET "https://yoursite.com/api/webhooks/events" \
  -H "authtoken: YOUR_API_TOKEN"
```

## Success response

### Success-Response:

```json
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"
    }
  }
}
```

---

Perfex CRM REST API by Themesic Interactive. Full reference: /apiguide/
