v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Cost control|Tracker cost setting

Create tracker cost settings.

This endpoint enables you to create new tracker cost settings.

post/tracker_cost_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-20T12:59:21+01:00"
      }
    }
  ]
}

Response

Success Response:

Example response

{
  "createdTrackerCostSettings": [
    {
      "tracker": {
        "manufacturingDate": "2015-02-20T12:59:21+01:00"
      },
      "trackerCategory": {
        "createdAt": "2015-02-20T12:59:21+01:00"
      },
      "from": "2015-02-20T12:59:21+01:00",
      "to": "2015-02-20T12:59:21+01:00"
    }
  ]
}