v1

latestOpenAPI 3.1.22026-08-0611530152.3 KB
Webhooks

List webhooks

Retrieve all webhooks

get/webhooks

Response

Successful response

idinteger

Webhook ID

namestring nullable

Label for the webhook

webhook_uristring

Webhook endpoint URL

queuestring

Queue name

last_statusstring nullable

Last webhook status

concurrencyinteger

Max simultaneous outstanding requests

timeoutinteger

The request timeout for webhook_uri

signing_secretstring nullable

Secret key(s) for HMAC-SHA256 signature verification. When configured, webhook requests include webhook-id, webhook-timestamp, and webhook-signature headers. Multiple secrets can be specified (space-separated) for key rotation.

vhoststring

Virtual host name

Example response

[
  {
    "id": 1,
    "name": "my-webhook",
    "webhook_uri": "http://www.example.com/endpoint",
    "queue": "push-queue",
    "concurrency": 10,
    "timeout": 30,
    "signing_secret": "my-secret-key-123",
    "vhost": "hptqevnp"
  }
]