Retrieves multi-tenant user information by email
Result<MultiTenantUserModel> containing:
Email address used to locate the tenant user across all tenants.
User membership details retrieved successfully.
Wrapper for API operation results containing success status, error information, and return value.
True if the operation completed successfully, false otherwise.
true
True if the operation failed, false otherwise.
false
Error information returned when the operation fails.
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}The result value returned when the operation is successful.
{
"tenants": [
{
"id": 1024,
"name": "Acme Corp",
"isUserEnabled": true
}
],
"invitations": [
{
"id": 9001,
"tenant": {
"id": 512,
"name": "Globex",
"isUserEnabled": false
},
"invitorFirstName": "Dana",
"invitorLastName": "Scully"
}
],
"tenantId": 1024,
"userId": 4242,
"userName": "[email protected]"
}