...
Parameter | Description | Parameter Type |
---|---|---|
The email address of the user to be fetched | Query string | |
userType (optional) | Allow to filter users being queried by type. can be External, Guest, Internal, All (by default filter by UserType.External) | UserType enumeration |
Returns
On success, 200 Ok
...
On authorization error, 403 Forbidden
Example
Code Block | ||
---|---|---|
| ||
string emailAddress = "domain@domain.com"; await _userManager.GetByEmail(emailAddress); |
...