Tableo Restaurant API
Webhooks

Delete a webhook subscription

Permanently remove a webhook subscription and its delivery history.

DELETE
/api/restaurant/webhooks/{webhook_id}

Authorization

bearerAuth
AuthorizationBearer <token>

Supports two token types:

  1. Restaurant tokens — API tokens with restaurant-api ability, issued per restaurant.
  2. User tokens — Personal access tokens with mobile-access ability (e.g. for the mobile app). When managing multiple restaurants, include X-Restaurant-Id: <id> header.

In: header

Path Parameters

webhook_id*integer

Webhook subscription ID.

Response Body

application/json

application/json

application/json

curl -X DELETE "https://devrms.tabdevx.com/api/restaurant/webhooks/0"
{
  "message": "Webhook deleted."
}
{
  "error": {
    "code": "string",
    "message": "string",
    "details": {}
  },
  "meta": {
    "timestamp": "2019-08-24T14:15:22Z"
  }
}

{
  "error": {
    "code": "NOT_FOUND",
    "message": "Booking not found.",
    "details": null
  },
  "meta": {
    "timestamp": "2026-03-18T10:00:00Z"
  }
}