Skip to main content
The User API allows you to create, update, and remove user accounts. This API should only be called to manage users in the native security realm. Users from other security realms are managed directly by Fusion’s auth proxy.

Create, Update, Delete or List Users

The path for this request is: /api/users/<id> where <id> is the user ID.
In order to see this object within the Fusion UI, it must be associated with an app. To do this, create the object using the /apps endpoint.
A GET request lists information about the user. The ID can be omitted in a GET request to get all users. A POST request creates a new user, while a PUT updates a user record. DELETE will remove the user.

Input

Output

When creating a user with a POST request or listing users with GET, the user properties will be returned. When updating or removing a user with a PUT or DELETE, no output will be returned.

Examples

Get all the configured users of the system: REQUEST
RESPONSE
Add a new user named ‘guest’: REQUEST
RESPONSE
Update a user to include the role named “admin”: REQUEST
RESPONSE None.