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

# Add team user

> Invites a user to a TidyCal team.

`tidyCal.addTeamUser` sends a team invitation email.

```ts automations/add-tidycal-team-user.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { tidyCal } from "automate.ax/tidycal"

export default automation("Add TidyCal team user", () => {
  onDashboardRun({ title: "Add TidyCal team user" })
  tidyCal.addTeamUser({
    teamId: 123,
    email: "ada@example.com",
    roleName: "admin",
  })
})
```

Team actions require an Agency or Pro plan. `roleName` can be `admin` or `user` and may be omitted for TidyCal's default. The result contains the provider message and `teamUserId`. TidyCal rejects duplicate invitations and existing members.
