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

# Inviting Team Members

> Add someone to your company as a team member with their own login

export const FramedImage = ({src, alt, noZoom}) => {
  return <div className="flex justify-center">
      <div className="inline-flex max-w-full rounded-xl border border-gray-950/10 dark:border-white/10 bg-gray-50/50 dark:bg-white/5 p-2">
        <img src={src} alt={alt} className="max-w-full rounded-lg not-prose" noZoom={noZoom} style={{
    maxHeight: '480px',
    width: 'auto',
    margin: 0,
    display: 'block'
  }} />
      </div>
    </div>;
};

<Info>Only Owners and Admins can invite team members.</Info>

## Send an invite

1. In the sidebar, go to **Authorization > Accounts > Users**.
2. Click **Invite user**.

<FramedImage src="/images/guides/list-users-invite-user.png" alt="User page highlighting invite user button" />

3. Enter the person's **Email address**.
4. Choose a **Role**: Member, Admin, or Owner.
5. Click **Send invite**.

<FramedImage src="/images/guides/invite-user-modal.png" alt="Invite user modal with email and role fields" />

What happens next depends on whether that email already has an account:

* **New email** — the person receives an invite email with a link. They follow it, set a password, and join your company. You'll see a toast confirming **Invitation sent**, and the invite appears under outstanding invitations until they accept it.
* **Existing email** (e.g. they already have an account from another company) — they're added immediately, with no email step. You'll see **User added** instead, and they'll appear straight away in the Users list.

<Note>
  Invite links expire after 7 days. If someone doesn't accept in time, resend the invite from the Users page.
</Note>

## Roles

| Role       | Can do                                                           |
| ---------- | ---------------------------------------------------------------- |
| **Owner**  | Full control of the company, including billing                   |
| **Admin**  | Manage team members, roles, and content — everything but billing |
| **Member** | Standard access to the company's content; no admin tools         |

## Managing existing members

From the Users page you can also:

* **Change a member's role** — use the role dropdown next to their name.
* **Resend or re-invite** — for a pending invitation that hasn't been accepted yet (re-invite refreshes an expired one).
* **Send a password reset email** — next to a member's email address.
