---
title: "Get a paginated and filtered list of time entries"
method: GET
path: "/TimeEntries"
tags: ["TimeEntries"]
---

# Get a paginated and filtered list of time entries

`GET /TimeEntries`

## Query parameters

- `UserId` string
- `Status` string
- `DateFrom` string
- `DateTo` string
- `HasLunch` boolean
- `MinHours` union
  - number, double
  - string, double
- `MaxHours` union
  - number, double
  - string, double
- `Query` string
- `Week` string
- `Month` string
- `Year` union
  - integer
  - string, int32
- `SortBy` string
- `SortOrder` string
- `Page` union
  - integer
  - string, int32
- `Limit` union
  - integer
  - string, int32

## Response `200`

Paginated list of time entries

- TimeEntryListResponseDto
  - `timeEntries` TimeEntryResponseDto[]
    - `id` string
    - `userId` string
    - `user` UserSummaryDto
      - `id` string
      - `email` string
      - `firstName` string, nullable
      - `lastName` string, nullable
      - `displayName` string, nullable
      - `type` string
      - `roleId` string, nullable
      - `roleName` string, nullable
    - `date` string
    - `timeIn` string, date-time
    - `timeOut` string, date-time, nullable
    - `lunchIn` string, date-time, nullable
    - `lunchOut` string, date-time, nullable
    - `notes` string, nullable
    - `totalHours` union
      - number, double
      - string, double
    - `lunchDuration` union
      - integer
      - string, int32
    - `status` string
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `totalCount` union
    - integer
    - string, int32
  - `pendingCount` union
    - integer
    - string, int32
  - `lockedCount` union
    - integer
    - string, int32
  - `stats` TimeEntryStatsDto
    - `userId` string
    - `totalEntries` union
      - integer
      - string, int32
    - `entriesByStatus` object
    - `totalHoursWorked` union
      - number, double
      - string, double
    - `averageHoursPerDay` union
      - number, double
      - string, double
    - `averageHoursPerWeek` union
      - number, double
      - string, double
    - `totalLunchMinutes` union
      - integer
      - string, int32
    - `averageLunchDuration` union
      - number, double
      - string, double
    - `earliestStartTime` string, nullable
    - `latestEndTime` string, nullable
    - `mostProductiveDay` string, nullable
    - `dateRange` TimeEntryDateRange
      - `from` string
      - `to` string

---

[API](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1.md) · [All operations](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clinicos/pawthosx-business-api-v1/versions/a905bde4e796/schema)
