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

# Invite board member

> Invite a Trello board member by email address.

`trello.inviteBoardMember` invites an email address to one board.

```ts automations/invite-trello-board-member.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { trello } from "automate.ax/trello"

export default automation("Invite Trello board member", () => {
  onDashboardRun({ title: "Invite Trello board member" })
  trello.inviteBoardMember({
    board: "board-id",
    email: "ada@example.com",
    fullName: "Ada Lovelace",
    role: "normal",
  })
})
```

Provide `board` as an ID, short link, or standard board URL and `email` as a valid address. Optional `fullName` is used when Trello creates a member account. `role` accepts `"admin"`, `"normal"`, or `"observer"` and defaults to `"normal"`. Optional second argument `{ account }` selects a Trello binding.

Returns `Signal<{ boardId: string; email: string; role: "admin" | "normal" | "observer" }>`.
