> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryardent.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Team

> Invite teammates and manage your organization

### ardent invite

Invite a user to your organization. Default role is `member`.

```bash theme={null}
ardent invite alice@company.com
ardent invite alice@company.com admin
```

<Accordion defaultOpen={false} title="Example output">
  ```
  ✓ Invite sent to alice@company.com
  ```
</Accordion>

### ardent invite list

Shows all pending invites for your organization.

```bash theme={null}
ardent invite list
```

<Accordion defaultOpen={false} title="Example output">
  ```
  Pending invites:

    alice@company.com
      Role: member | Sent: 4/29/2026

  ```
</Accordion>

### ardent invite delete

```bash theme={null}
ardent invite delete alice@company.com
```

<Accordion defaultOpen={false} title="Example output">
  ```
  ✓ Invite for alice@company.com deleted
  ```
</Accordion>

### ardent org members

Shows everyone in your organization.

```bash theme={null}
ardent org members
```

<Accordion defaultOpen={false} title="Example output">
  ```
  Organization members:

    vikram@company.com (Vikram)
      Role: admin

    alice@company.com
      Role: member

  ```
</Accordion>

### ardent org set-role

Available roles: `owner`, `admin`, `member`, `viewer`.

```bash theme={null}
ardent org set-role alice@company.com admin
```

<Accordion defaultOpen={false} title="Example output">
  ```
  ✓ Updated alice@company.com to admin
  ```
</Accordion>

### ardent org remove

```bash theme={null}
ardent org remove alice@company.com
```

<Accordion defaultOpen={false} title="Example output">
  ```
  ✓ Removed alice@company.com from organization
  ```
</Accordion>
