CreateTenantUserRequest
DTO for creating a user within a tenant. Inherits update fields and adds email for creation.
Properties
| Name | Type | Description |
|---|---|---|
| firstName | string | The user's first name |
The user's first name | ||
| lastName | string | The user's last name |
The user's last name | ||
| 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 | ||
| email* | string | |
JSON Example
{
"firstName": "string",
"lastName": "string",
"roleType": "System",
"roleId": 0,
"systemRoleType": "Admin",
"email": "user@example.com"
}