v1

latestOpenAPI 3.0.32026-08-06111223.1 KB
Webhooks

List Webhook Subscriptions

Get all active webhook subscriptions for the current tenant.

get/api/zapier/hooks

Response

List of active subscriptions

idstring

Unique subscription identifier

event_type'order.created' | 'abstract.created' | 'project.created'

Type of event subscribed to

created_atstring date-time

When the subscription was created

last_triggered_atstring date-time nullable

When the webhook was last triggered

trigger_countinteger

Number of times this webhook has been triggered

Example response

[
  {
    "id": "zapier_abc123def456",
    "event_type": "order.created",
    "created_at": "2024-01-15T10:30:00Z",
    "last_triggered_at": "2024-01-20T14:45:00Z",
    "trigger_count": 42
  }
]