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

# Invite a User

> Learn how to invite users to your Confidence workspace.

export const HowToSchema = ({name, description, steps = []}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "HowTo",
    name,
    description
  };
  if (steps.length > 0) {
    schema.step = steps.map((s, i) => ({
      "@type": "HowToStep",
      position: i + 1,
      name: typeof s === "string" ? s : s.name,
      text: typeof s === "string" ? s : s.text || s.name
    }));
  }
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<HowToSchema
  name="Invite a User"
  description="Learn how to invite users to your Confidence workspace."
  steps={[
{
  name: "Go to Users",
  text: "Go to Confidence. On the bottom of the left sidebar, select Admin > Users.",
},
"Click Invite a colleague",
{
  name: "Enter details",
  text: "In the dialog, enter the email address of the user you want to invite and which roles you want to assign them.",
},
{ name: "Send invitation", text: "Click Invite to invite your colleague." },
]}
/>

If you're not using SSO, you must [invite a user](../iam/users#invite-users) to give them access to Confidence. Inviting a user sends them an email with a link to create an account.

<Note>
  To invite a user to Confidence, you must have the `Admin` role.
</Note>

## Invite a User

<Steps>
  <Step title="Go to Users">
    Go to Confidence. On the bottom of the left sidebar, select **Admin > Users**.
  </Step>

  <Step title="Click Invite a colleague" />

  <Step title="Enter details">
    In the dialog, enter the email address of the user you want to invite and which roles you want to assign them.
  </Step>

  <Step title="Send invitation">
    Click **Invite** to invite your colleague.
  </Step>
</Steps>

<Note>
  Invitations expire after 7 days. If the user doesn't accept the invitation within 7 days, you must invite them again. You can manually expire an invitation by clicking the trashcan icon next to it.
</Note>

## Related Resources

<CardGroup cols={2}>
  <Card title="Users Reference" href="/docs/iam/users">
    Deep dive into user management
  </Card>

  <Card title="Roles Reference" href="/docs/iam/roles">
    Understand available roles
  </Card>

  <Card title="Create Custom Roles" href="/docs/how-to-guides/create-custom-role">
    Configure custom permissions
  </Card>

  <Card title="IAM Reference" href="/docs/iam/introduction">
    Deep dive into identity management
  </Card>
</CardGroup>
