User Settings
User Settings Page
On the User Settings page, Account Administrators can view the list of users assigned to the account. Administrators have the ability to add new users, remove existing ones, or update user roles.
To manage User Settings, go to User Management > User Settings
View Assigned Users
-
In the sidebar, navigate to User Management > User Settings.
-
On the User Settings page, you will see a table listing users, their roles, and email addresses.
curl --request GET \--url https://api.ingenuitycloudservices.com/rest-api/users\--header 'Accept: application/json' \--header 'X-Api-Token: API_KEY'
Add New Users
-
In the sidebar, navigate to User Management > User Settings.
-
On the User Settings page, Click “Add User”: This opens a form where the administrator can add a new user.
-
Fill in User Details:
- First Name
- Last Name
- Email Address
- Assign Role: Select any of the five available roles to assign appropriate permissions (more on this in the Account Security & Roles section ).
curl --request POST \--url https://api.ingenuitycloudservices.com/rest-api/users\--header 'Accept: application/json' \--header 'X-Api-Token: API_KEY'--data '{"email":"example@email.com", "first_name":"john", "last_name":"doe", "two_fa_required":1, "roles":["support","administrator"]}'
Amend User Roles
-
In the sidebar, navigate to User Management > User Settings.
-
On the user list table, find the user you want to remove. Under Actions, click the ”…” menu.
-
Select Edit Roles. A pop-up form will appear where you can assign or remove roles for the user.
-
Click Save Role Changes to apply the updates for this account.
Remove Users
-
In the sidebar, navigate to User Management > User Settings.
-
On the user list table, find the user you want to remove. Under Actions, click the ”…” menu.
-
Select Remove User. A confirmation box will pop up. click Remove User again to complete the action. The user will lose access to the account.