Prerequisites
- Access to a Veratrace instance
- Appropriate permissions to manage users
Create a User
Navigate to/users/create to create a new user.
Source: Feature Inventory - UI Flows (User Management)
User Fields
- Username - Username for the user
- Email - Email address
- Name - First name
- Middle Name (optional) - Middle name
- Family Name (optional) - Family name
- Temporary Password - Initial password (user must change on first login)
Create via API
API:POST /instances/:instanceId/users
Request body:
List Users
View all users at/users or use the API.
API: GET /instances/:instanceId/users
Query parameters:
username- Filter by usernameenabled- Filter by enabled statuspage,size,sort- Pagination and sorting
Update a User
Navigate to/users/:userId/edit or use the API.
API: PUT /instances/:instanceId/users/:userId
Request body:
User Status
Users can be enabled or disabled:- enabled: true - User can log in and access the system
- enabled: false - User is disabled and cannot access the system
Roles
Source: Feature Inventory - User Roles and Permissions (Roles)Related
- Access Control - Understand roles and permissions
- Users API - Complete API reference