v1

latestOpenAPI 3.1.02026-07-14801408.6 KB

/work_schedules

Returns a collection of your account work_schedules. Required scope: r_account.

get/work_schedules

Path parameters

subdomainstring required

The account subdomain

Response

200

idstring
namestring
statusstring
week_starts_onstring
work_hoursstring

Example response

[
  {
    "id": "5c6",
    "name": "08:30 - 17:00 | 30' break",
    "status": "active",
    "work_days": [
      {
        "day_of_week": "monday",
        "work_hours": "8.00",
        "break_duration": "00:30",
        "work_intervals": [
          {
            "to_time": "17:00",
            "from_time": "08:30"
          }
        ]
      }
    ],
    "week_starts_on": "monday",
    "work_hours": "40.00"
  }
]