GET
/
time-entries
/
{id}
Get time entry
curl --request GET \
  --url https://api.plane.com/v1/time-entries/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "tme_1HPCXADYAhh5k1NMU0r1WUqs",
  "worker": "wr_CgcLakmx4guire",
  "date": "2024-03-17",
  "duration": "8.0",
  "note": null,
  "created": "2024-03-17T10:30:00Z"
}

Parameters

id
string
required
The ID of a time entry object.

Returns

Returns a time entry if a valid identifier was provided; otherwise returns an error.
{
  "id": "tme_1HPCXADYAhh5k1NMU0r1WUqs",
  "worker": "wr_CgcLakmx4guire",
  "date": "2024-03-17",
  "duration": "8.0",
  "note": null,
  "created": "2024-03-17T10:30:00Z"
}