GET
/
api
/
v3
/
timeentries
/
{timeEntryId}
curl --request GET \
  --url https://{host}/api/v3/timeentries/{timeEntryId} \
  --header 'Authorization: <authorization>'
{
  "data": {
    "ownerId": 90,
    "unit": 2,
    "startsAt": "2024-04-22T08:30:00",
    "duration": "04:45:00",
    "creationSource": 2,
    "axisSections": [
      {
        "id": 42
      },
      {
        "id": 127
      },
      {
        "id": 346
      },
      {
        "id": 347
      }
    ],
    "comment": {
      "id": 59,
      "content": "This is another comment"
    },
    "timeTypeId": 1
  }
}

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Path Parameters

timeEntryId
integer
required

Identifier of the TimeEntry.

Response

200
application/json

OK

The response is of type object.