GET
/
api
/
v1
/
external
/
restaurant
/
{id}
/
schedule
Get restaurant schedule records
curl --request GET \
  --url http://dev-backend-1.guestme.space/api/v1/external/restaurant/{id}/schedule \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "date": "2023-12-25",
    "day": "MONDAY",
    "type": "RESTAURANT",
    "restaurantId": 123,
    "records": [
      {
        "id": 123,
        "date": "2023-12-25",
        "start": "<string>",
        "end": "<string>",
        "isWorkingTime": true,
        "day": "MONDAY",
        "type": "RESTAURANT"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Restaurant ID

Response

200 - */*

OK

The response is of type object[].