v1

latestOpenAPI 3.1.02026-07-131991131.4 KB
Webhooks

Update a webhook

Updates the specified webhook.

put/api/v1/webhooks/{id}

Path parameters

idstring uuid required
Example:webhook id, uuid format

ID of the webhook.

Headers

X-Merchant-Codestring required
Example:code provided to you from Tabby side

Used for multi store/countries setup, please contact your Account manager to recognize that

Request body

idstring required

Unique webhook ID, assigned by Tabby.

urlstring uri required

HTTPS endpoint for notifications. The URL should be valid and accessible (not local).

Example request

{
  "header": {
    "title": "Arbitrary header name to sign the request",
    "value": "Random string to sign the request"
  },
  "id": "unique webhook id",
  "url": "https://example-updated.com/"
}

Response

Success. Webhook object is returned.

idstring required

Unique webhook ID, assigned by Tabby.

urlstring uri required

HTTPS endpoint for notifications. The URL should be valid and accessible (not local).

Example response

{
  "header": {
    "title": "Arbitrary header name to sign the request",
    "value": "Random string to sign the request"
  },
  "id": "unique webhook id",
  "url": "https://example-updated.com/"
}