Skip to content

List webhook deliveries

GET /v1/default/banks/{bank_id}/webhooks/{webhook_id}/deliveries

Inspect delivery history for a webhook (useful for debugging).

Authentication required — include an Authorization: Bearer hsk_... header. See Authentication for details.

Path Parameters

NameTypeRequiredDescription
bank_idstringYes
webhook_idstringYes

Query Parameters

NameTypeRequiredDescription
limitintegerNoMaximum number of deliveries to return
cursorstring | nullNoPagination cursor (created_at of last item)

Example Request

bash
curl -X GET 'https://api.hindsight.vectorize.io/v1/default/banks/your-bank-id/webhooks/your-webhook-id/deliveries' \
  -H 'Authorization: Bearer hsk_your_api_key'

Responses

200 — Successful Response

json
{
  "items": [
    {
      "id": "Id",
      "webhook_id": "string",
      "url": "Url",
      "event_type": "Event Type",
      "status": "Status",
      "attempts": 0,
      "next_retry_at": "string",
      "last_error": "string",
      "last_response_status": 0,
      "last_response_body": "string",
      "last_attempt_at": "string",
      "created_at": "string",
      "updated_at": "string"
    }
  ],
  "next_cursor": "string"
}

422 — Validation Error

json
{
  "detail": [
    {
      "loc": [
        null
      ],
      "msg": "Message",
      "type": "Error Type",
      "input": null,
      "ctx": {},
      "url": "URL"
    }
  ]
}

Source: /v1/default/banks/{bank_id}/webhooks/{webhook_id}/deliveries