> ## 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.

# Get current user

> Get the Asana user represented by the connected account.

`getCurrentUser` returns the connected identity. Use its GID in assignments, followers, or user-specific queries.

```ts automations/get-asana-user.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { getCurrentUser } from "automate.ax/asana"

export default automation("Get Asana user", () => {
  onHttpRequest({ scope: "automation" })
  getCurrentUser()
})
```

Only optional `account` is accepted; it defaults to the project binding. Returns `Signal<AsanaUser>` with `id`, optional `name`, `type`, `email`, and `photoUrl`, plus visible `workspaces` references. Asana can omit email or photo data based on visibility.
