Check by whether a user exists.
Description
The Exists() method is used to check for the existence of a user.
Package Details
Interface
IUserManager
Syntax
await _userManager.Exists(int userId)
Returns
Task<bool>
API
HEAD
/api/v1/users/{id}
Parameters
Parameter | Description | Parameter Type |
---|---|---|
id | The user Id to search for | Path |
Returns
On success, 200 Ok
On error, 400 Bad Request
On not found, 404 Not Found
On authorization error, 403 Forbidden
Example
int userId = 1; await _userManager.Exists(userId);