---
title: "Get all requests and public holiday per member per day"
method: GET
path: "/absences_per_day"
tags: ["Absences"]
---

# Get all requests and public holiday per member per day

`GET /absences_per_day`

Get all requests and public holiday per member per day for the `start`…`end` window.

The window between `start` and `end` may span at most 1826 days (5 years). Wider ranges are rejected with a 400 response, so page through longer periods in smaller windows.

## Query parameters

- `start` string, required — Date/time in ISO 8601 format, e.g. `2026-06-01` (interpreted as UTC midnight) or `2026-06-01T09:00:00Z`. Always include a time zone designator (`Z` for UTC) when sending a time of day. Localized formats such as `01.06.2026` or `06/01/2026` are misinterpreted and must not be used. The window between `start` and `end` may span at most 1826 days (5 years). Wider ranges are rejected with a 400 response, so page through longer periods in smaller windows.
- `end` string, required — Date/time in ISO 8601 format, e.g. `2026-06-01` (interpreted as UTC midnight) or `2026-06-01T09:00:00Z`. Always include a time zone designator (`Z` for UTC) when sending a time of day. Localized formats such as `01.06.2026` or `06/01/2026` are misinterpreted and must not be used. The window between `start` and `end` may span at most 1826 days (5 years). Wider ranges are rejected with a 400 response, so page through longer periods in smaller windows.
- `request_member_ids` string
- `department_ids` string
- `locale` 'en' | 'de' | 'fr' | 'hu' | 'it' | 'pl' | 'pt' | 'ru' | 'es' | 'tr' | 'uk'

## Response `200`

Successful response

- object[]
  - `type` 'request' | 'public_holiday', required
  - `member` object, required
    - `id` string, required
    - `custom_id` string, nullable, required
    - `name` string, nullable, required
    - `email` string, nullable, required
  - `date` string, required
  - `start_at` 'morning' | 'afternoon', nullable, required — For day-based leave types: whether the absence starts in the `morning` (the whole first day counts) or `afternoon` (only the second half of the first day). Ignored for hour-based leave types.
  - `end_at` 'lunchtime' | 'end_of_day', nullable, required — For day-based leave types: whether the absence ends at `lunchtime` (only the first half of the last day) or `end_of_day` (the whole last day counts). Ignored for hour-based leave types.
  - `request` object, nullable, required
    - `id` string, required
    - `duration` number, required
    - `workday_absence_duration` number, required
    - `status` string, nullable, required
    - `take_from_allowance` boolean, required
    - `allowance_type` object, nullable, required
      - `id` string, required
      - `name` string, required
      - `default_name` string, required
      - `ignore_allowance_limit` boolean, required
      - `allowance_unit` 'days' | 'hours', required
    - `leave_type` object, nullable, required
      - `name` string, required
      - `default_name` string, required
      - `id` string, nullable, required
      - `leave_unit` 'days' | 'half_days' | 'hours' | 'minutes_30' | 'minutes_15' | 'minutes_10' | 'minutes_5' | 'minutes_1', required
  - `public_holiday_day` object, nullable, required
    - `id` string, required
    - `duration` string, required
    - `names` object[], required
      - `language` string, required
      - `name` string, required

## Other responses

- `400` — Invalid input data
- `401` — Authorization not provided
- `403` — Insufficient access
- `404` — Not found
- `500` — Internal server error

---

[API](https://skmtc.net/absentify/apis/absentify-crud-api.md) · [All operations](https://skmtc.net/absentify/apis/absentify-crud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/absentify/absentify-crud-api/revisions/ef777d51e6f2/schema)
