Skip to main content
GET
/
working-time
/
company
/
with
/
users
Get working time users
curl --request GET \
  --url https://api.projectcor.com/v1/working-time/company/with/users \
  --header 'Authorization: Bearer <token>'
{
  "12345": [
    {
      "daily_hours": 9,
      "day_of_week": 1,
      "start_at": "09:00:00",
      "end_at": "18:00:00",
      "user_id": 12345,
      "break_time": 0
    },
    {
      "daily_hours": 8,
      "day_of_week": 2,
      "start_at": "09:00:00",
      "end_at": "18:00:00",
      "user_id": 12345,
      "break_time": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Working time data grouped by user ID

{key}
object[]