---
title: "Fetch user time entry"
method: GET
path: "/users/{user_id}/time_entries/{id}"
tags: ["time entries"]
---

# Fetch user time entry

`GET /users/{user_id}/time_entries/{id}`

Retrieves a single time entry for a user by its ID.

## Path parameters

- `user_id` integer, required
- `id` integer, required

## Response `200`

The time entry loads successfully.

- TimeEntry
  - `id` integer — Unique identifier for the time entry.
  - `user_id` integer, required — The ID of the user (licensed user only) associated with the time entry.
  - `assignable_id` integer, required — The ID of the assigned Project, Phase, or Leave Type.
  - `assignable_type` 'Project' | 'LeaveType' — The type of the assignable resource.
  - `date` string, date, required — The date of the time entry.
  - `hours` number, float, required — The number of hours confirmed. Can be null.
  - `is_suggestion` boolean — Indicates if the time entry is a suggestion.
  - `scheduled_hours` number, float, nullable — The number of scheduled hours for the time entry.
  - `task` string, nullable — The task category. Can be null.
  - `notes` string, nullable — Additional notes for the time entry. Can be null.
  - `bill_rate` number, float, nullable — The hourly rate for the time entered.
  - `bill_rate_id` integer, nullable — The ID of the billing rate.
  - `created_at` string, date-time — Timestamp when the time entry was created.
  - `updated_at` string, date-time — Timestamp when the time entry was last updated.

## Other responses

- `404` — The time entry was not found.

---

[API](https://skmtc.net/smartsheet/apis/resource-management-openapi-reference.md) · [All operations](https://skmtc.net/smartsheet/apis/resource-management-openapi-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smartsheet/resource-management-openapi-reference/versions/e4c439ac13f2/schema)
