v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Time Tracking Tasks

Save tasks

Save new (or update existing) time tracking tasks

post/v6/timeTracking/tasks

Request body

Example request

{
  "data": [
    {
      "id": "tmt_28868401",
      "description": "Development work",
      "status": "ACTIVE",
      "billableRate": 15000,
      "customData": {
        "internal_key": "some_internal_key",
        "some_other_field": 23434
      }
    }
  ]
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "data": {
        "id": "tmt_28868401",
        "description": "Development work",
        "status": "ACTIVE",
        "billableRate": 15000,
        "customData": {
          "internal_key": "some_internal_key",
          "some_other_field": 23434
        }
      }
    }
  ]
}