Managing Users
User Actions
| Action | Description | Required Role |
|---|---|---|
| Create | Add new user to institution | Admin+ |
| Edit | Update user details and role | Admin+ |
| Suspend | Temporarily disable user access | Admin+ |
| Reactivate | Restore suspended user | Admin+ |
| Deactivate | Permanently remove user access | Super Admin |
| Reset Password | Trigger password reset for user | Admin+ |
Via Platform UI
- Navigate to User Management in the CRYMBO Platform sidebar
- Click Add User or select an existing user
- Perform the desired action
- Changes take effect immediately
Via API
POST /api/v1/users
{
"email": "user@institution.com",
"firstName": "Jane",
"lastName": "Smith",
"role": "compliance_officer"
}
PATCH /api/v1/users/{userId}
{
"status": "suspended"
}