Войти в ЛК
GET/api/v1/external/restaurant/{id}/schedule

Get restaurant schedule records

🔒 Bearer Token

Path Parameters

idinteger (int64)required

Restaurant ID

Пример: 1001

Responses

curl -X GET \
  'http://dev-backend-1.guestme.space/api/v1/external/restaurant/1001/schedule' \
  -H 'Authorization: Bearer <token>'
Response
[
  {
    "id": 0,
    "date": "2025-01-01",
    "day": "MONDAY",
    "type": "RESTAURANT",
    "restaurantId": 0,
    "records": [
      {
        "id": null,
        "date": null,
        "start": null,
        "end": null,
        "isWorkingTime": null,
        "day": null,
        "type": null
      }
    ]
  }
]