Tableo Restaurant API

List Service Hours

Retrieve service hours (service periods) for a given date. Returns named periods like Lunch and Dinner with start/end times.

GET
/api/restaurant/service-hours

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

Query Parameters

date?string

Date in YYYY-MM-DD format. Defaults to today.

Formatdate

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://devrms.tabdevx.com/api/restaurant/service-hours"
[
  {
    "name": "Lunch",
    "start": "12:00",
    "end": "15:00"
  },
  {
    "name": "Dinner",
    "start": "19:00",
    "end": "23:00"
  }
]
{
  "error": {
    "code": "string",
    "message": "string",
    "details": {}
  },
  "meta": {
    "timestamp": "2019-08-24T14:15:22Z"
  }
}
{
  "error": {
    "code": "string",
    "message": "string",
    "details": {}
  },
  "meta": {
    "timestamp": "2019-08-24T14:15:22Z"
  }
}
{
  "error": {
    "code": "string",
    "message": "string",
    "details": {}
  },
  "meta": {
    "timestamp": "2019-08-24T14:15:22Z"
  }
}