Skip to main content
GET
/
v1
/
webhooks
List webhooks
curl --request GET \
  --url https://api.adullam.dev/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "webhook_abc123",
      "url": "https://mystore.com/webhooks/adullam",
      "events": [
        "payment.completed",
        "payment.failed",
        "transfer.completed"
      ],
      "status": "active",
      "secret": "whsec_abc123def456...",
      "description": "Production webhook",
      "created_at": "2024-01-15T10:00:00Z",
      "updated_at": "2024-01-15T10:00:00Z"
    }
  ]
}

List Webhooks

Listing all registered webhooks provides an overview of the webhook endpoints associated with your account. Use the List Webhooks API to retrieve a comprehensive list of webhooks, including their IDs, URLs, and statuses.

Authorizations

Authorization
string
header
required

Use the access token obtained from /v1/auth/token

Response

List of webhooks

data
object[]