Skip to main content
GET
/
api
/
partner
/
v1
/
shifts
Get all active shifts
curl --request GET \
  --url https://app.eat-now.io/api/partner/v1/shifts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "shift_dinner",
      "name": "Dinner",
      "name_i18n": {
        "EN": "Dinner",
        "FR": "Diner"
      },
      "shift_type": "RECURRING",
      "days_of_week": [
        1,
        2,
        3,
        4,
        5
      ],
      "start_date": null,
      "end_date": null,
      "start_time": "19:00",
      "end_time": "23:00",
      "reservation_mode": "AUTOMATIC"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.eat-now.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:your_token_here
required

Restaurant-scoped partner API token passed as Authorization: Bearer <token>.

Response

All active restaurant shifts ordered by configured order

data
object[]
required