> ## 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 assigned tasks

> List tasks assigned to a user in an Asana workspace.

`listAssignedTasks` reads assignments without requiring Asana's premium advanced search.

```ts automations/list-my-asana-tasks.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listAssignedTasks } from "automate.ax/asana"

export default automation("List my Asana tasks", () => {
  onHttpRequest({ scope: "automation" })
  listAssignedTasks({
    workspaceId: "workspace-gid",
    assignee: "me",
    completedSince: "now",
  })
})
```

`workspaceId` is required. `assignee` is a user GID or `"me"` and defaults to `"me"`. `completedSince` accepts `"now"` or an ISO timestamp with offset. `limit` is 1–100 and defaults to `100`; `offset` continues pagination; `account` defaults to the project binding.

Returns `Signal<{ tasks: AsanaTask[]; pageInfo: { nextOffset?: string } }>`.
