UserForAdminDto
User DTO for admin endpoints, includes tenant membership details.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The URL-friendly unique identifier for the user |
The URL-friendly unique identifier for the user | ||
| string | The user's email address | |
The user's email address | ||
| firstName | string | The user's first name |
The user's first name | ||
| lastName | string | The user's last name |
The user's last name | ||
| fullName | string | The user's full name (computed) |
The user's full name (computed) | ||
| isSuperAdmin | boolean | Whether the user is a super admin |
Whether the user is a super admin | ||
| isEmailVerified | boolean | Whether the user's email address has been verified |
Whether the user's email address has been verified | ||
| isSupportAgent | boolean | Whether the user is a support agent |
Whether the user is a support agent | ||
| createdDate | string | When the user was created |
When the user was created | ||
| lastLogin | string | When the user last logged in |
When the user last logged in | ||
| utm | UtmInfoDto | |
| tenants | array of UserTenantMembershipDto | The tenants this user belongs to |
The tenants this user belongs to | ||
JSON Example
{
"code": "string",
"email": "string",
"firstName": "string",
"lastName": "string",
"fullName": "string"
}