UpdateTenantUserRequest
DTO for Updating a user within a tenant. Does not include email as it cannot be changed.
FirstName/LastName are managed via User updates and synced to TenantUser automatically.
Properties
| Name | Type | Description |
|---|---|---|
| roleType | enum | System Custom |
System Custom | ||
| roleId | integer | The ID of the custom role (only used if RoleType is Custom) |
The ID of the custom role (only used if RoleType is Custom) | ||
| systemRoleType | enum | Admin Manager User Viewer |
Admin Manager User Viewer | ||
| isClientManager | boolean | Whether the user is a client manager within the tenant |
Whether the user is a client manager within the tenant | ||
| isPartner | boolean | Whether the user is a partner within the tenant |
Whether the user is a partner within the tenant | ||
| isAssociate | boolean | Whether the user is an associate within the tenant |
Whether the user is an associate within the tenant | ||
JSON Example
{
"roleType": "System",
"roleId": 0,
"systemRoleType": "Admin",
"isClientManager": false,
"isPartner": false
}