v1

latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KB
Time Records

Get User Time Records

List time records for a single user. Supports the same filters as GET /team/time.

get/users/{user_id}/time

Path parameters

user_idnumber required
Example:89

User ID

Query parameters

fromstring
Example:2018-01-01

Date from

tostring
Example:2018-01-31

Date to

limitinteger
Example:10000

Max results for pagination, max value 50000

pageinteger
Example:1

Page

offsetinteger

Record offset. Takes precedence over page when both are sent.

Response

OK

idnumber required

Time record ID

timenumber required

Time recorded in seconds

usernumber required

User ID

datestring required

Date

isLockedboolean
isInvoicedboolean
commentstring

Example response

[
  {
    "id": 2660155,
    "time": 3600,
    "user": 1304,
    "date": "2018-01-20",
    "task": {
      "id": "ev:9876543210",
      "name": "Task Name",
      "projects": [
        "ev:1234567890"
      ],
      "section": 1234,
      "labels": [
        "high",
        "bug"
      ],
      "position": 1,
      "dueAt": "2018-03-05 16:00:00",
      "status": "open",
      "time": {
        "total": 7200,
        "users": {
          "1304": 3600,
          "1543": 3600
        }
      },
      "estimate": {
        "total": 7200,
        "type": "overall",
        "users": {
          "1304": 3600,
          "1543": 3600
        }
      },
      "attributes": {
        "Client": "Everhour",
        "Priority": "high"
      },
      "metrics": {
        "efforts": 42,
        "expenses": 199
      }
    },
    "comment": "some notes"
  }
]