vellTRDocs
API ReferenceWebhooksList Webhook Deliveries

List Webhook Deliveries

GET/v1/merchants/{id}/webhook-deliveriesRecommended

List delivery attempts across the merchant, with filters for store and delivery status.

Authentication

Signature Pattern

Dashboard JWT bearer (not the HMAC public API).
HeaderValueDescription
AuthorizationBearer {jwt}Merchant dashboard JWT (from /v1/auth/login)
Content-Typeapplication/jsonRequest content type

Request Parameters

NameTypeRequiredDescription
storeIdstringOptionalFilter by store
statusstringOptionalpending|in_progress|delivered|failed|exhausted
limitintegerOptionalPage size
offsetintegerOptionalOffset

Response Parameters

FieldTypeExample
itemsarray[…]
items[].idstring"whd_0f1a2b3c4d5e"
items[].endpointIdstring"whe_9a2e6b4d4e8a"
items[].eventTypestring"payment.captured"
items[].statusstring"delivered"
items[].attemptCountinteger1
items[].lastResponseCodeinteger200
items[].createdAtstring"2026-04-13T10:00:03Z"

Response Example

JSONResponse
{
  "items": [
    {
      "id": "whd_0f1a2b3c4d5e",
      "endpointId": "whe_9a2e6b4d4e8a",
      "eventType": "payment.captured",
      "status": "delivered",
      "attemptCount": 1,
      "lastResponseCode": 200,
      "createdAt": "2026-04-13T10:00:03Z"
    }
  ]
}

Status Codes

200Success
201Created
400Bad Request
401Unauthorized
404Not Found
429Rate Limited
Try itMock
GEThttps://api.pay.sandbox.kvell.group