Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter

Description

Parameter Type

email

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
languagec#
string emailAddress = "domain@domain.com";
await _userManager.GetByEmail(emailAddress);

...