---
title: "List Employee Payroll Runs"
method: GET
path: "/hris/employeepayrollruns"
tags: ["hris/employeepayrollruns"]
---

# List Employee Payroll Runs

`GET /hris/employeepayrollruns`

## Query parameters

- `remote_data` boolean
- `limit` number
- `cursor` string

## Headers

- `x-connection-token` string, required

## Response `200`

- object
  - `prev_cursor` string, nullable, required
  - `next_cursor` string, nullable, required
  - `data` object[], required
    - `employee_id` string, nullable — The UUID of the associated employee
    - `payroll_run_id` string, nullable — The UUID of the associated payroll run
    - `gross_pay` number, nullable — The gross pay amount
    - `net_pay` number, nullable — The net pay amount
    - `start_date` string, date-time, nullable — The start date of the pay period
    - `end_date` string, date-time, nullable — The end date of the pay period
    - `check_date` string, date-time, nullable — The date the check was issued
    - `deductions` DeductionItem[], nullable — The list of deductions for this payroll run
      - `name` string, nullable — The name of the deduction
      - `employee_deduction` number, nullable — The amount of employee deduction
      - `company_deduction` number, nullable — The amount of company deduction
    - `earnings` EarningItem[], nullable — The list of earnings for this payroll run
      - `amount` number, nullable — The amount of the earning
      - `type` string, nullable — The type of the earning
    - `taxes` TaxItem[], nullable — The list of taxes for this payroll run
      - `name` string, nullable — The name of the tax
      - `amount` number, nullable — The amount of the tax
      - `employer_tax` boolean, nullable — Indicates if this is an employer tax
    - `field_mappings` object, nullable — The custom field mappings of the object between the remote 3rd party & Panora
    - `id` string, nullable — The UUID of the employee payroll run record
    - `remote_id` string, nullable — The remote ID of the employee payroll run in the context of the 3rd Party
    - `remote_data` object, nullable — The remote data of the employee payroll run in the context of the 3rd Party
    - `remote_created_at` string, date-time, nullable — The date when the employee payroll run was created in the 3rd party system
    - `created_at` string, date-time, nullable — The created date of the employee payroll run record
    - `modified_at` string, date-time, nullable — The last modified date of the employee payroll run record
    - `remote_was_deleted` boolean, nullable — Indicates if the employee payroll run was deleted in the remote system

## Changes

- **2024-09-05** `5ba5c769e2e1` — 1 breaking
  - for the `query` request parameter `limit`, default value `50` was added
- **2024-09-03** `8f398d57935f` — 1 breaking
  - for the `query` request parameter `limit`, default value `50` was removed
- **2024-08-13** `6c3a1da2bdc9` — 18 info
  - added the optional property `allOf[subschema #2]/data/items/check_date` to the response with the `200` status
  - added the optional property `allOf[subschema #2]/data/items/created_at` to the response with the `200` status
  - added the optional property `allOf[subschema #2]/data/items/deductions` to the response with the `200` status
  - added the optional property `allOf[subschema #2]/data/items/earnings` to the response with the `200` status
  - …14 more
- **2024-08-11** `04b9c7ceedbf` — 18 warning
  - removed the optional property `allOf[subschema #2]/data/items/check_date` from the response with the `200` status
  - removed the optional property `allOf[subschema #2]/data/items/created_at` from the response with the `200` status
  - removed the optional property `allOf[subschema #2]/data/items/deductions` from the response with the `200` status
  - removed the optional property `allOf[subschema #2]/data/items/earnings` from the response with the `200` status
  - …14 more
- …earlier changes not shown

[Full history](https://skmtc.dev/panoratech/apis/panora-api/changes/hris/employeepayrollruns/get.md)

---

[API](https://skmtc.dev/panoratech/apis/panora-api.md) · [All operations](https://skmtc.dev/panoratech/apis/panora-api/llms.txt) · [OpenAPI document](https://skmtc.dev/panoratech/apis/panora-api/revisions/634ca9b624aa?raw)
