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

> Get the Trello member represented by the connected account.

`getCurrentMember` returns the profile behind the selected Trello connection. Use it to discover the member ID used by card assignment actions.

```ts automations/get-trello-member.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { getCurrentMember } from "automate.ax/trello"

export default automation("Get Trello member", () => {
  onHttpRequest({ scope: "automation" })
  getCurrentMember({})
})
```

## Inputs

Only the optional `account: string | IntegrationAccountReference<"trello">` input is accepted; it defaults to the project account.

## Output

Returns `Signal<TrelloMember>` with `id`, `fullName`, `username`, optional `initials`, and nullable `avatarUrl` and `url`.
