...
Parameter | Description | Parameter Type |
---|---|---|
serviceId | The service Id to search for | Path |
userType [UserType] | The user type (by default, it is External) | Query string |
Returns
On success, 200 Ok
...
Get all users by PKI
Code Block | ||
---|---|---|
| ||
int serviceId = 1; await _userManager.GetByPki(serviceId); |
Get all internal users by PKI
Code Block | ||
---|---|---|
| ||
int serviceId = 1; await _userManager.GetByPki(serviceId, UserType.Internal); |
Get all external users by PKI
Code Block | ||
---|---|---|
| ||
int serviceId = 1; await _userManager.GetByPki(serviceId, UserType.External); |
...