---
title: "List payslip files for the authenticated employee"
method: GET
path: "/v1/employee/payslip-files"
tags: ["Payslips"]
---

# List payslip files for the authenticated employee

`GET /v1/employee/payslip-files`

Returns a paginated list of payslip files belonging to the current employee.

## Scopes

| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage employment documents (`employment_documents`) | View payslips (`payslip:read`) | - |

## Query parameters

- `page` integer
- `page_size` integer

## Response `200`

Success

- ListPayslipFilesResponse — Response schema listing many payslip_files
  - `data` object
    - `current_page` integer — The current page among all of the total_pages
    - `payslip_files` PayslipFile[]
      - `currency` PayslipFileCurrency, nullable
        - `code` string, nullable, required — Currency code of the SWIFT fee. Only present when processing_fee is set.
        - `symbol` string, required — The currency symbol
      - `id` string, uuid, required — Identifier of the employment being terminated.
      - `name` string, required — Original filename of the payslip
      - `net_salary` PayslipFileNetSalary, nullable — Net salary amount including source/converted amounts, currencies and conversion rate. Shape produced by `Tiger.Billing.Value.Amount.build/1`.
        - `converted_amount` integer, nullable
        - `converter` string, nullable
        - `fee` string — A decimal number represented as a string to preserve precision. Supports negative values and fractional digits.
        - `rate` string — A decimal number represented as a string to preserve precision. Supports negative values and fractional digits.
        - `source_amount` integer, nullable
      - `period_end` string, date, nullable
      - `period_start` string, date, nullable
    - `total_count` integer — The total number of records in the result
    - `total_pages` integer — The total number of pages the user can go through

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/remote-com/apis/remote.md) · [All operations](https://skmtc.net/remote-com/apis/remote/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/remote-com/remote/revisions/7e6a0c61ac82/schema)
