---
title: "List project time entries"
method: GET
path: "/projects/{project_id}/time_entries"
tags: ["time entries"]
---

# List project time entries

`GET /projects/{project_id}/time_entries`

Retrieves a paginated list of time entries for a specific project.

## Path parameters

- `project_id` integer, required

## Query parameters

- `from` string, date
- `to` string, date
- `with_suggestions` boolean
- `sort_field` 'created' | 'updated'
- `sort_order` 'ascending' | 'descending'

## Response `200`

A paginated list of time entries for the project.

- TimeEntriesResponse
  - `data` 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.
  - `paging` PagingMetadata
    - `per_page` integer — The maximum number of items to show per response page.
    - `page` integer — The current response page number.
    - `previous` string, nullable — If you're on the first page, this value is `null`; otherwise the value is the path and query parameters to get the previous page of items.
    - `self` string — The path and query parameters to get the current page of items.
    - `next` string, nullable — If there are more items, this value is the path and query parameters to get the next page of items; otherwise, it's `null`.
    - `count` integer, nullable — The total number of items in all the pages.

---

[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)
