Skip to main content
GET
/
stopwatch
/
v1
/
timelogs
List Time Logs
curl --request GET \
  --url https://api.threadi.au/stopwatch/v1/timelogs \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "<string>",
      "properties": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "archived": true
    }
  ],
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of StopWatch Time Log records

results
object[]
paging
object