Users
The Users page manages the tenant user lifecycle (listing, create, update, delete, sync).
Access Path
- Web:
/users
Major Transactions
- User list and detail
- Creating a new user
- User update
- User deletion
- User synchronization from external source
API Terminals
GET /api/usersGET /api/users/:idPOST /api/usersPATCH /api/users/:idDELETE /api/users/:idPOST /api/users/sync
User Specific Helpers
GET /api/users/me/companiesGET /api/users/me/portal-actionsGET /api/users/me/navigation
Authorization Note
me/*endpoints require onlyauthenticate.- Management endpoints are protected by
authenticate + requireRole + tenantIsolation + requireAdmin. - Action-based permissions:
user:read,user:create,user:update,user:delete.
:::info Manifest Code
core:user:view
:::