---
title: "Payment"
method: GET
path: "/employer/payment"
tags: ["Payroll"]
---

# Payment

`GET /employer/payment`

Read payroll and contractor related payments by the company.

## Query parameters

- `entity_ids` string[]
- `start_date` string, date, required
- `end_date` string, date, required

## Headers

- `Finch-API-Version` string, date, required

## Response `200`

Payment data

- object[]
  - `id` string, uuid, required — The unique id for the payment.
  - `pay_period` object, nullable, required — The pay period object.
    - `start_date` string, nullable, required
    - `end_date` string, nullable, required
  - `pay_date` string, nullable, required
  - `debit_date` string, nullable, required
  - `company_debit` Money, nullable, required
    - `amount` integer, nullable, required — Amount for money object (in cents)
    - `currency` string, required
  - `gross_pay` Money, nullable, required
    - `amount` integer, nullable, required — Amount for money object (in cents)
    - `currency` string, required
  - `net_pay` Money, nullable, required
    - `amount` integer, nullable, required — Amount for money object (in cents)
    - `currency` string, required
  - `employer_taxes` Money, nullable, required
    - `amount` integer, nullable, required — Amount for money object (in cents)
    - `currency` string, required
  - `employee_taxes` Money, nullable, required
    - `amount` integer, nullable, required — Amount for money object (in cents)
    - `currency` string, required
  - `individual_ids` string[], nullable, required — Array of every individual on this payment.
  - `pay_group_ids` string[], nullable, required — Array of the Finch id (uuidv4) of every pay group associated with this payment.
  - `pay_frequencies` PayFrequency[], nullable, required — List of pay frequencies associated with this payment.

## Other responses

- `202` — The request has been accepted for processing, but data is not yet available

---

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