GET
/
api
/
v1
/
webhooks
curl --request GET \
  --url https://api.tabby.ai/api/v1/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Merchant-Code: <x-merchant-code>'
{
  "id": "unique webhook id",
  "url": "https://example.com/",
  "is_test": true,
  "header": {
    "title": "Arbitrary header name to sign the request",
    "value": "Random string to sign the request"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <secret_key>, where <secret_key> is your secret_key.

Headers

X-Merchant-Code
string
required

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

Example:

"code provided to you from Tabby side"

Response

200
application/json

Success. Webhook object is returned.

The response is of type object.