v1

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

Create/Update employee accounting entries.

This method can be used to create and update employee accounting entries.

An attempt is made to locate an existing employee accounting entry based on the selected primary key. If one is found, it will be adjusted. Otherwise, a new employee accounting entry will be created. If the dryRun option is enabled, no actual changes will occur. It is important to note that employee accounting entries could affect the employees' time account.

post/employee_accounting_entry/upsert

Request body

dryRunboolean

Simulate the operation. (No records will be created or changed) This Parameter is optional.

Example request

{
  "records": [
    {
      "data": {
        "date": "2015-02-20"
      }
    }
  ]
}

Response

Success Response:

Example response

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