GET
/
webhooks
/
{webhookId}
/
deliveries
List webhook delivery attempts
curl --request GET \
  --url https://api.balansas.com/functions/v1/customer-api/webhooks/{webhookId}/deliveries \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "f0e9d8c7-b6a5-4321-9f8e-7d6c5b4a3210",
      "event_type": "payment.completed",
      "event_id": "evt_8f2a1c9b",
      "delivery_status": "success",
      "response_status_code": 200,
      "response_time_ms": 287,
      "attempt_number": 1,
      "error_message": null,
      "created_at": "2026-05-28T11:02:09.456Z"
    }
  ],
  "meta": {
    "pagination": {
      "page": 1,
      "limit": 25,
      "total": 100
    }
  }
}

Authorizations

x-api-key
string
header
required

Customer API key. Send as x-api-key: sk_... or Authorization: Bearer sk_.... Write operations also require an X-CSRF-Token header (64-char hex).

Response

Success

data
object[]
required
meta
object
required