List webhook deliveries
GET/v1/default/banks/{bank_id}/webhooks/{webhook_id}/deliveriesInspect delivery history for a webhook (useful for debugging).
Authentication required — include an
Authorization: Bearer hsk_...header. See Authentication for details.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
bank_id | string | Yes | |
webhook_id | string | Yes |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum number of deliveries to return |
cursor | string | null | No | Pagination 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