Skip to content

Files

Latest commit

4777a2f · Feb 3, 2021

History

History
74 lines (66 loc) · 1.85 KB

File metadata and controls

74 lines (66 loc) · 1.85 KB

Get trackings

Description: Get a list of all trackings.
URL: /api/tracking/
Method: GET
Data constraints: None

Example request:

GET http://localhost:3000/api/tracking

Example result:

Status: 200 OK

{
  "data": [
    {
      "id": "1",
      "description": "This is the 1st test tracking.",
      "startTime": "2020-11-15T10:00:00.000Z",
      "endTime": null,
      "createdAt": "2020-11-22T15:45:20.143Z",
      "updatedAt": "2020-11-22T15:45:20.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"
      }
    },
    {
      "id": "2",
      "description": "This is the 2nd test tracking.",
      "startTime": "2020-11-15T12:00:00.000Z",
      "endTime": null,
      "createdAt": "2020-11-22T15:45:20.150Z",
      "updatedAt": "2020-11-22T15:49:09.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"
      }
    },
    {
      "id": "3",
      "description": "This is the 3rd test tracking.",
      "startTime": "2020-11-15T12:00:00.000Z",
      "endTime": "2020-11-15T15:00:00.000Z",
      "createdAt": "2020-11-22T15:45:20.159Z",
      "updatedAt": "2020-11-22T15:49:09.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"
      }
    }
  ]
}