v1

latestOpenAPI 3.0.02026-08-066924329.8 KB
Time Entries

Get all time entries

post/timeEntries/search

Request body

limitinteger
searchstring
idsstring[]
withRelationsboolean nullable
startstring date-time nullable
endstring date-time nullable
onlyDeletedstring nullable
isInterruptboolean nullable
isBilledboolean nullable
isBillableboolean nullable
searchInDescriptionstring nullable
clientIdstring nullable
projectIdstring nullable
serviceIdstring nullable
userIdstring nullable
userIdsstring[] nullable
extToolIdstring nullable
exactboolean nullable

Example request

{
  "limit": 100,
  "search": "GmbH",
  "orders": [
    {
      "column": "id",
      "direction": "desc"
    }
  ],
  "isInterrupt": true,
  "isBilled": true,
  "isBillable": true,
  "searchInDescription": "and"
}

Response

successful operation

Example response

{
  "data": [
    {
      "id": "01J43T7CVPGPJ34P3963YZV3S6",
      "user_id": "01J43R8NX9F3WMMFQ294H2Q4ED",
      "client_id": "01J43T7CVPGPJ34P3963YZV3S1",
      "project_id": "01jd9kk3es6s9amhn8smf6dsj6",
      "description": "Completed new deployment process",
      "billable": true,
      "started_at": "2021-01-01T00:00:00.000000Z",
      "created_at": "2021-01-01T00:00:00.000000Z",
      "updated_at": "2021-01-01T00:00:00.000000Z",
      "push_errors": []
    }
  ]
}