v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Time Tracking|Employee Accounting Entry

Request employee accounting entries.

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.

get/employee_accounting_entry/fetch

Query parameters

filter[from]string
Example:2022-12-22

Filters the accounting entries based on the given date.

filter[to]string
Example:2022-12-22

Filters the accounting entries based on the given date.

filter[byIds][]integer[]

Filters the accounting entries based on the given IDs.

filter[byProjectIds][]integer[]

Filters the accounting entries based on the given projects.

filter[bySalaryTypeIds][]integer[]

Filters the accounting entries based on the given salary types.

filter[byEmployeeIds][]integer[]

Filters the accounting entries based on the given employees.

offsetinteger

Use this parameter to specify the number of records you want to skip before starting to collect the data from the result set.

limitinteger

The limit parameter defines the maximum number of records that can be retrieved in a single API request, with a max and default value set at 500 records.

Response

Success Response:

offsetinteger

Number of skipped records.

totalCountinteger

Total number of accounting entries. (Only calculated if offset is 0)

Example response

{
  "data": [
    {
      "date": "2015-02-20",
      "updatedAt": "2015-02-20T12:59:21+01:00"
    }
  ]
}