Versions Compared

Key

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

...

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
languagec#
int serviceId = 1;
await _userManager.GetByPki(serviceId);

Get all internal users by PKI

Code Block
languagec#
int serviceId = 1;
await _userManager.GetByPki(serviceId, UserType.Internal);

Get all external users by PKI

Code Block
languagec#
int serviceId = 1;
await _userManager.GetByPki(serviceId, UserType.External);

...