> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# List time entries

> Lists time entries in a Workspace and optional date or location range.

`clickUp.listTimeEntries` lists time entries in a Workspace and optional date or location range.

```ts automations/clickup-list-time-entries.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { clickUp } from "automate.ax/clickup"

export default automation("List time entries", () => {
  onDashboardRun({ title: "List time entries" })
  clickUp.listTimeEntries({
    workspaceId: "workspace-id",
    startDate: 1790000000000,
    endDate: 1800000000000,
  })
})
```

## Inputs

`workspaceId`; optional millisecond dates, assignee, and one of task, List, Folder, or Space. At most one location filter is allowed. Every action accepts an optional static `account` binding.

## Output

Returns `{ entries }` containing `ClickUpTimeEntry` values.
