Versions Compared

Key

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

...

Parameter

Description

Parameter Type

id

The user Id to search for

Path

Returns

On successIf the user is found, 200 Ok

If the user does not exist, 404 Not Found

On error, 400 Bad Request

On not found, 404 Not FoundOn authorization error, 403 Forbidden

Example

Code Block
languagec#
int userId = 1;
await _userManager.Exists(userId);

...