List Webhook Endpoints
GET
/v1/stores/{storeId}/webhooksCoreList the webhook endpoints configured for a store.
Authentication
Signature Pattern
Dashboard JWT bearer (not the HMAC public API).| Header | Value | Description |
|---|---|---|
Authorization | Bearer {jwt} | Merchant dashboard JWT (from /v1/auth/login) |
Content-Type | application/json | Request content type |
Response Parameters
| Field | Type | Example |
|---|---|---|
items | array | […] |
items[].id | string | "whe_9a2e6b4d4e8a" |
items[].url | string | "https://merchant.example.com/kvell/webhook" |
items[].eventTypes | array | ["payment.captured","payment.refunded"] |
items[].active | boolean | true |
items[].status | string | "active" |
items[].createdAt | string | "2026-04-13T10:00:00Z" |
Response Example
JSONResponse
{
"items": [
{
"id": "whe_9a2e6b4d4e8a",
"url": "https://merchant.example.com/kvell/webhook",
"eventTypes": [
"payment.captured",
"payment.refunded"
],
"active": true,
"status": "active",
"createdAt": "2026-04-13T10:00:00Z"
}
]
}Status Codes
200Success
201Created
400Bad Request
401Unauthorized
404Not Found
429Rate Limited
Try itMock
GEThttps://api.pay.sandbox.kvell.group