---
title: "List all employee breakdowns"
method: GET
path: "/contribution_reports/{contribution_report_id}/employee_breakdowns"
tags: ["Contribution Reports"]
---

# List all employee breakdowns

`GET /contribution_reports/{contribution_report_id}/employee_breakdowns`

Returns a list of `employee breakdowns` for a `contribution report`. The breakdowns are returned sorted by creation date, with the most recent breakdown appearing first.

## Path parameters

- `contribution_report_id` string, required

## Query parameters

- `page` integer — The page of results to return. Defaults to 1 if not provided.
- `page_size` integer — The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.

## Headers

- `X-Platform-Id` string

## Response `200`

OK

- ContributionReportEmployeeBreakdownResponsePagedList
  - `items` ContributionReportEmployeeBreakdownResponse[], required — A paginated array containing the response elements
    - `object` string — The object type
    - `employee_id` string, required — Unique identifier of the employee for which the breakdown is created
    - `contribution_report_id` string, required — Unique identifier of the related contribution report
    - `employer_id` string, required — Unique identifier of the employer for which the breakdown is created
    - `external_customer_id` string, nullable — Unique identifier of the customer for which the breakdown is created. This identifier is assigned by the Employer of Record (EoR) platform to the Customer (i.e. the company using the EoR service) for which the employee is employed. This parameter is only available to EoR platforms.
    - `period` GetEmployeeBreakdownPeriod, required
      - `from_date` string, date, required — Start date of the period
      - `to_date` string, date, required — End date of the period
    - `currency` 'eur' | 'aed' | 'afn' | 'xcd' | 'all' | 'amd' | 'aoa' | 'ars' | 'usd' | 'aud' | 'awg' | 'azn' | 'bam' | 'bbd' | 'bdt' | 'xof' | 'bgn' | 'bhd' | 'bif' | 'bmd' | 'bnd' | 'bob' | 'bov' | 'brl' | 'bsd' | 'inr' | 'btn' | 'nok' | 'bwp' | 'byn' | 'bzd' | 'cad' | 'xaf' | 'cdf' | 'chf' | 'che' | 'chw' | 'nzd' | 'clp' | 'clf' | 'cny' | 'cop' | 'cou' | 'crc' | 'cup' | 'cuc' | 'cve' | 'ang' | 'czk' | 'djf' | 'dkk' | 'dop' | 'dzd' | 'egp' | 'mad' | 'ern' | 'etb' | 'fjd' | 'fkp' | 'mdl' | 'gbp' | 'gel' | 'ghs' | 'gip' | 'gmd' | 'gnf' | 'gtq' | 'gyd' | 'hkd' | 'hnl' | 'hrk' | 'htg' | 'huf' | 'idr' | 'xdr' | 'ils' | 'iqd' | 'irr' | 'isk' | 'jmd' | 'jod' | 'jpy' | 'kes' | 'kgs' | 'khr' | 'kmf' | 'kpw' | 'krw' | 'kwd' | 'kyd' | 'kzt' | 'lak' | 'lbp' | 'lkr' | 'lrd' | 'lsl' | 'zar' | 'lyd' | 'mga' | 'mkd' | 'mmk' | 'mnt' | 'mop' | 'mru' | 'mur' | 'mvr' | 'mwk' | 'mxn' | 'mxv' | 'myr' | 'mzn' | 'nad' | 'xpf' | 'ngn' | 'nio' | 'npr' | 'omr' | 'pab' | 'pen' | 'pgk' | 'php' | 'pkr' | 'pln' | 'pyg' | 'qar' | 'ron' | 'rsd' | 'rub' | 'rwf' | 'sar' | 'sbd' | 'scr' | 'sdg' | 'sek' | 'sgd' | 'shp' | 'sll' | 'sos' | 'srd' | 'ssp' | 'stn' | 'svc' | 'xsu' | 'syp' | 'twd' | 'szl' | 'thb' | 'tjs' | 'tmt' | 'tnd' | 'top' | 'try' | 'ttd' | 'tzs' | 'uah' | 'ugx' | 'usn' | 'uyu' | 'uyi' | 'uyw' | 'uzs' | 'ves' | 'vnd' | 'vuv' | 'wst' | 'yer' | 'xua' | 'zmw' | 'zwl', required
    - `status` 'open' | 'finalized', required
    - `finalized_at` string, date-time, nullable — Date and time the breakdown was finalized, if applicable
    - `created_at` string, date-time, required — Date and time the breakdown was created
    - `last_updated_at` string, date-time, required — Date and time of the last update to the breakdown
    - `health_insurance` GetEmployeeBreakdownHealthInsurance, required
      - `employer_contributions` GetEmployeeBreakdownContribution[], required — Employer health insurance contributions
        - `id` string, required — Unique identifier for the contribution entry
        - `category` 'gross_premium' | 'tax' | 'tax_relief', required
        - `member_type` 'policyholder' | 'partner_dependant' | 'child_dependant', required
        - `adjustment` boolean, required — Indicates if this contribution is an adjustment to a previous charge
        - `adjustment_for` string, nullable — Unique identifier of the original contribution being adjusted, if applicable
        - `amount` number, double, required — The monetary value of the contribution
        - `type` 'recurring' | 'one_off', required
        - `note` string, nullable — Optional field for additional context, e.g. if the amount is pro-rated or backdated
        - `cover_period` GetEmployeeBreakdownPeriod, required
          - `from_date` string, date, required — Start date of the period
          - `to_date` string, date, required — End date of the period
        - `policy_id` string, required — The policy the contribution applies to. Prefixed with `p_`.
        - `employee_policy_id` string, required — DEPRECATED: Use `policy_id` instead. The employee health insurance policy the contribution applies to. Prefixed with `eehp_`.
        - `reporting_month` string, date, required — The primary month for which the contribution is relevant, helping to align contributions with standard monthly reporting cycles. It allows for consistent monthly categorisation in systems that require calendar-based reporting. Provided in `YYYY-MM-DD` format (with the day set to `01` as a convention), only the year and month are relevant.
      - `employee_contributions` GetEmployeeBreakdownContribution[], required — Employee health insurance contributions
        - `id` string, required — Unique identifier for the contribution entry
        - `category` 'gross_premium' | 'tax' | 'tax_relief', required
        - `member_type` 'policyholder' | 'partner_dependant' | 'child_dependant', required
        - `adjustment` boolean, required — Indicates if this contribution is an adjustment to a previous charge
        - `adjustment_for` string, nullable — Unique identifier of the original contribution being adjusted, if applicable
        - `amount` number, double, required — The monetary value of the contribution
        - `type` 'recurring' | 'one_off', required
        - `note` string, nullable — Optional field for additional context, e.g. if the amount is pro-rated or backdated
        - `cover_period` GetEmployeeBreakdownPeriod, required
          - `from_date` string, date, required — Start date of the period
          - `to_date` string, date, required — End date of the period
        - `policy_id` string, required — The policy the contribution applies to. Prefixed with `p_`.
        - `employee_policy_id` string, required — DEPRECATED: Use `policy_id` instead. The employee health insurance policy the contribution applies to. Prefixed with `eehp_`.
        - `reporting_month` string, date, required — The primary month for which the contribution is relevant, helping to align contributions with standard monthly reporting cycles. It allows for consistent monthly categorisation in systems that require calendar-based reporting. Provided in `YYYY-MM-DD` format (with the day set to `01` as a convention), only the year and month are relevant.
  - `page` integer, required — The current page of the results
  - `page_size` integer, required — The number of results on this page. This can be different from the requested page size if the total number of results is less than the requested page size
  - `total_count` integer, required — The total number of elements available in the response. This is the total number of elements available across all pages, not just the current page.
  - `has_next_page` boolean — Whether there are more pages available after this page
  - `has_previous_page` boolean — Whether there are more pages available before this page

## Other responses

- `404` — Not Found

## Changes

- **2026-08-07** `7b8b3ed87c96` — 1 info
  - added the new optional `header` request parameter `X-Platform-Id`

[Change history](https://skmtc.dev/kota/apis/kota-api/changes/contribution_reports/:contribution_report_id/employee_breakdowns/get.md)

---

[API](https://skmtc.dev/kota/apis/kota-api.md) · [All operations](https://skmtc.dev/kota/apis/kota-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kota/kota-api/revisions/4017c7acef2d/schema)
