...
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 | ||
---|---|---|
| ||
int userId = 1; await _userManager.Exists(userId); |
...