Skip to main content
POST
/
stopwatch
/
v1
/
timelogs
/
batch
/
read
Batch Read Time Logs
curl --request POST \
  --url https://api.threadi.au/stopwatch/v1/timelogs/batch/read \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "inputs": [
    {
      "id": "1234567890"
    }
  ],
  "properties": [
    "<string>"
  ],
  "propertiesWithHistory": [
    "<string>"
  ],
  "idProperty": "<string>"
}
'
{
  "completedAt": "2026-03-25T06:01:32.819Z",
  "results": [
    {
      "id": "<string>",
      "properties": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "archived": true
    }
  ],
  "startedAt": "2026-03-25T06:01:32.757Z",
  "status": "COMPLETE"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
inputs
object[]
required
properties
string[]
propertiesWithHistory
string[]
idProperty
string

Response

A list of StopWatch Time Log records where all requested records were found.

completedAt
string<date-time>
Example:

"2026-03-25T06:01:32.819Z"

results
object[]
startedAt
string<date-time>
Example:

"2026-03-25T06:01:32.757Z"

status
string
Example:

"COMPLETE"