v1

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

Create tool cost settings.

This endpoint enables you to create new tool cost settings.

post/tool_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-20"
      }
    }
  ]
}

Response

Success Response:

Example response

{
  "createdToolCostSettings": [
    {
      "tool": {
        "currentProjectChangedAt": "2015-02-20T12:59:21+01:00",
        "createdAt": "2015-02-20T12:59:21+01:00"
      },
      "toolCategory": {
        "createdAt": "2015-02-20T12:59:21+01:00"
      },
      "from": "2015-02-20",
      "to": "2015-02-20"
    }
  ]
}