UI User Management Guide
Introduction
Arthur Shield comes with an embedded authentication and Role-Based Access Control (RBAC) authorization. This document will walk you through the steps to manage your UI users.
For Single-Sign-On (SSO) with OpenID Connect (OIDC) configuration, please reach out to the Arthur team.
Key Concepts
TASK-ADMIN: The task admin users have access to the Shield Admin UI. The Shield Admin UI provides the ability to view inferences and the validation results processed across all tasks as well as to manage the tasks. The task management capability includes configuring the validation rules inside each task.
CHAT-USER: The chat users have access to the Arthur Chat application when the Chat feature is enabled.
Managing users with API endpoints
Use the User Management API endpoints with a valid API key to create, retrieve, and delete UI users. Examples are provided below.
Creating a new user with the TASK-ADMIN role
To create a Shield admin user, run the POST
/users
API endpoint with shield_admin_user
role.
{
"email": "taskadmin@mycompany.com",
"password": "TaskAdminPass1!@#",
"roles": [
"TASK-ADMIN"
]
}
Creating a new user with the CHAT-USER role
To create a default Shield user, run the POST
/users
API endpoint with no explicit role.
{
"email": "chatuser@mycompany.com",
"password": "ChatUserPass1!@#",
"roles": [
"CHAT-USER"
]
}
Password Policy
Shield is configured with the following password policy. Please reach out to Arthur team if you need to configure a custom policy.
- Minimum length: 12 characters
- Special characters: At least 1
- Uppercase characters: At least 1
- Lowercase characters: At least 1
Updated 7 months ago