v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Cost control|Wage group employee setting

Create wage group employee settings.

This endpoint enables you to create new wage group employee settings.

post/wage_group_employee_setting/upsert

Request body

startCostCalculationboolean

If true a cost calculation will be started from the start date of this setting on.

dryRunboolean

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

Example request

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

Response

Success Response:

Example response

{
  "createdWageGroupEmployeeSettings": [
    {
      "wageGroup": {
        "createdAt": "2015-02-20T12:59:21+01:00"
      },
      "from": "2015-02-20",
      "to": "2015-02-20"
    }
  ]
}