Get person month day offs

GET /data/persons/{person_id}/day-offs/month/{year}/{month}

Return all day off recorded for given month and person.

Path parameters

  • person_id string(uuid) Required

    Person unique identifier

  • year integer Required

    Year to get day offs for

  • month integer Required

    Month to get day offs for

Responses

  • 200 application/json

    All day off recorded for given month and person

GET /data/persons/{person_id}/day-offs/month/{year}/{month}
curl \
 --request GET 'http://api.example.com/data/persons/a24a6ea4-ce75-4665-a070-57453082c25/day-offs/month/2022/7' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {}
]