---
title: "Request employee accounting entries."
method: GET
path: "/employee_accounting_entry/fetch"
tags: ["Time Tracking|Employee Accounting Entry"]
---

# Request employee accounting entries.

`GET /employee_accounting_entry/fetch`

This method allows you to fetch a structured list of data that includes various
employee accounting entry records, such as dates, values, value units, salary types, employee details, and other identifiers.

An employee accounting entry consists of a date, a salary type, a value with unit, and an assigned employee.

Please be aware that employee accounting entries have the potential to impact the time account of employees.

## Query parameters

- `filter[from]` string
- `filter[to]` string
- `filter[byIds][]` integer[]
- `filter[byProjectIds][]` integer[]
- `filter[bySalaryTypeIds][]` integer[]
- `filter[byEmployeeIds][]` integer[]
- `offset` integer
- `limit` integer

## Response `200`

Success Response:

- StandardEmployeeAccountingEntryFetchResponse
  - `data` object[] — The accounting entries.
    - `id` integer — The internal id of the accounting entry.
    - `employee` ApiHelperResponseEmployeeReference
      - `id` integer — The internal employee ID.
      - `reference` string — The personal number. (max. 20 characters)
      - `cardNumber` string — The driver card number.
      - `importSource` string — External data source from which this employee originates. (max. 16 characters)
      - `importKey` string — External ID from the respective data source. (max. 64 characters)
    - `date` string — Represents a date. (ISO 8601) ICU-Format: yyyy-MM-dd
    - `updatedAt` string — Represents a date and a time. (ISO 8601) ICU-Format: yyyy-MM-dd'T'HH:mm:ssxxx
    - `salaryType` EmployeeAccountingEntryFetchResponseSalaryTypeItem
      - `id` integer — The internal salary type ID.
      - `name` string — The name of the salary type.
      - `type` string — The salary type.
      - `isVacation` boolean — Whether the salary type is the holiday salary type.
    - `value` number — The value of the accounting entry.
    - `valueUnit` string — The value unit of the accounting entry. | Value | Description | | ------------------------- | -------------------------------------- | | HOUR | Hours | | DAY | Days | | CURRENCY | Currency | | QUANTITY | Quantity |
    - `project` EmployeeAccountingEntryFetchResponseProjectItem
      - `id` integer — The internal project ID.
      - `reference` string — The project number.
      - `importSource` string — External data source from which this project originated.
      - `importKey` string — External ID from the respective data source.
      - `name` string — The project name.
    - `description` string — The description of the accounting entry.
    - `costCenter` string — The costCenter of the accounting entry. (max. 128 characters)
  - `offset` integer — Number of skipped records.
  - `totalCount` integer — Total number of accounting entries. (Only calculated if offset is 0)

---

[API](https://skmtc.net/geocapture/apis/geocapture-api.md) · [All operations](https://skmtc.net/geocapture/apis/geocapture-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/geocapture/geocapture-api/versions/15839b24c497/schema)
