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

# User Management

> Manage users and their roles

export const Image = ({src, branded = false, alt = ""}) => {
  const imgParts = src.split(".");
  const brandClass = branded ? " branded" : "";
  return <>
      <img className={"block dark:hidden" + brandClass} src={"/assets/images/" + imgParts[0] + "--light." + imgParts[1]} alt={alt} />
      <img className={"hidden dark:block" + brandClass} src={"/assets/images/" + imgParts[0] + "--dark." + imgParts[1]} alt={alt} />
    </>;
};

<Image src="user.png" alt="A preview of user management in Fusion" branded />

You can manage users across your organisations through your user management section. From here you can control user details, preferences and organisation associations.

Speak to your account manager about enabling organisational hierarchy if it is not currently available on your account.

## Features

From your user management pages, you can:

1. Set user name preferences
2. Set display preferences
3. Reset user password
4. View and revoke user API access token
5. Manage organisation access. More details over on the [Organisation page](/organisations#user-roles)
