Update Webhook Endpoint
PATCH
/v1/stores/{storeId}/webhooks/{webhookId}CoreEnable or disable a webhook endpoint.
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 |
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
active | boolean | Optional | Enable/disable delivery |
Request Example
JSONRequest Body
{
"active": false
}Response Parameters
| Field | Type | Example |
|---|---|---|
id | string | "whe_9a2e6b4d4e8a" |
url | string | "https://merchant.example.com/kvell/webhook" |
active | boolean | false |
status | string | "active" |
Response Example
JSONResponse
{
"id": "whe_9a2e6b4d4e8a",
"url": "https://merchant.example.com/kvell/webhook",
"active": false,
"status": "active"
}Status Codes
200Success
201Created
400Bad Request
401Unauthorized
404Not Found
429Rate Limited
Try itMock
PATCHhttps://api.pay.sandbox.kvell.group