Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.15 KB

File metadata and controls

49 lines (40 loc) · 1.15 KB

Update tracking by id

Description: Update a certain tracking by its id.
URL: /api/tracking/:trackingId
Method: PATCH
Data constraints: Provide description and/or start/end time.

Example request:

PATCH http://localhost:3000/api/tracking/1

{
  "description": "Hey there, I just updated this description text by a patch request :D",
  "endTime": "2020-11-15T13:00:00.000Z"
}

Example result:

Status: 200 OK

{
  "data": {
    "id": "1",
    "description": "Hey there, I just updated this description text by a patch request :D",
    "startTime": "2020-11-15T10:00:00.000Z",
    "endTime": "2020-11-15T13:00:00.000Z",
    "createdAt": "2020-11-22T15:45:20.143Z",
    "updatedAt": "2020-11-22T15:54:18.000Z",
    "task": {
      "id": "1",
      "name": "TestTask1",
      "description": "This is the 1st test task.",
      "createdAt": "2020-11-22T15:45:20.197Z",
      "updatedAt": "2020-11-22T15:45:20.197Z"
    }
  }
}