List Webhook Destinations
List all webhook destinations (unpaginated array, oldest first). Each row includes URL, subscribed events, and delivery health metrics. The signing secret is NOT included in the list — fetch a single destination (GET /v3/webhook/destinations/{destination_uuid}/) to read secret_shared_key.
Authorizations
Response
List of webhook destinations (unpaginated, oldest first).
Stable destination identifier; use as {destination_uuid} for update/delete.
Human-readable name shown in the Console.
Destination URL that receives POST requests with the webhook payload.
When false, Didit silently skips delivery to this destination.
Payload schema version sent to this destination. v3 is the current/recommended format.
v1, v2, v3 Event filter for this webhook destination. Didit delivers only webhooks whose event type exactly matches one of these values — there is no wildcard subscription. When sent, the list must contain at least one valid event (an explicit [] is rejected with 400); a destination whose list is empty (field omitted at create) receives nothing. On update the list is replaced wholesale, never merged.
1Supported webhook event name. Use these exact strings in subscribed_events; unsupported values are rejected.
status.updated, data.updated, user.status.updated, user.data.updated, business.status.updated, business.data.updated, activity.created, transaction.created, transaction.status.updated ["status.updated", "data.updated"]Cached length of subscribed_events, useful for UI rendering.
Total delivery attempts (successful + failed) recorded for this destination.
Delivery attempts whose target responded with HTTP ≥ 400 (or did not respond).
Average target response time in milliseconds, rounded to an integer. null if no deliveries yet.
round(failed_deliveries_count / deliveries_count * 100); 0 when there are no deliveries.
Timestamp of the most recent delivery attempt (success or failure). null if never delivered.