v1

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

Delete employee accounting entries.

This endpoint enables the deletion of employee accounting entries based on various filters. In case the dryRun flag is enabled, the response will be simulated, and no live data will be altered. Please be aware that employee accounting entries have the potential to impact the time account of employees.

get/employee_accounting_entry/delete

Query parameters

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

Filters the accounting entries based on the given date.

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

Filters the accounting entries based on the given date.

employee_accounting_entries[byIds][]integer[]

Filters the accounting entries based on the given IDs.

employee_accounting_entries[byEmployeeIds][]integer[]

Filters the accounting entries based on the given employees.

employee_accounting_entries[bySalaryTypeIds][]integer[]

Filters the accounting entries based on the given salary types.

employee_accounting_entries[byProjectIds][]integer[]

Filters the accounting entries based on the given projects.

dryRunboolean

Simulate the operation (default: false). (No data will be removed) This Parameter is optional.

Response

Success Response:

Example response

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