Product Selector

Fusion 5.12
    Fusion 5.12

    User APIFusion Proxy APIs

    Table of Contents

    The User API allows you to manage user accounts in the following ways:

    • Create user

    • Update user information

    • List all users

    • View user data

    • Update user passwords

    • Remove existing user accounts

    This API should only be called to manage users in the native security realm, which manages both authentication and authorization within the Fusion UI. Users from other security realms, such as LDAP or SAML, are managed directly by the Fusion auth proxy access control component. It referred to as the "auth proxy" because it handles both authentication and authorization for all requests to the Fusion REST API services for SSO services.

    Before working with the User API to create a user, be sure the native security realm is set up and ready. You can manage security realms using the Realms API.

    Users also have the ability to be assigned to different roles. Roles are used as a way to control what actions a user can take within the Fusion environment. The Roles API allows you to set up and manage roles and their associated privileges by assigning permissions. When adding users, you can specify which roles will be applied using an array with the roleNames parameter. It is a good practice to have roles defined and configured prior to setting up users in the system. You can restrict actions for a specific user by listing them in an array with the permissions parameter.

    Example to create a user

    To create a user you will need to give them a unique id. They need to be assigned to a security realm using the realmName parameter. Use roleNames to assign them a role. For users with multiple roles, this is assigned by including all of their roles in the roleNames array. The permissions parameter can be used to restrict which HTTP methods a user is allowed. If permissions is left blank, they will be able to use any HTTP methods defined by their role.

    curl --request POST \
      --url https://FUSION_HOST:FUSION_PORT/api/users \
      --header 'Accept: */*' \
      --header 'Content-Type: application/json' \
      --data '{
      "id": "UNIQUE_ID",
      "username": "NAME_OF_USER",
      "realmName": "native",
      "password": "PASSWORD",
      "roleNames": [
        "search", "developer"
      ],
      "timezone": "Mountain Time (US & Canada)",
      "permissions": [
        {
          "methods": [
            "GET", "POST", "PUT"
          ],
        }
      ]
    }'