Namespace Keycloak.AuthServices.Sdk.Admin.Requests.Users
Classes
- ExecuteActionsEmailRequest
Send an email to the user with a link they can click to execute particular actions.
- GetUserGroupsRequestParameters
Optional request parameters for the GetUserGroups endpoint. It can be called in three different ways.
- Don’t specify any criteria. A stream of all groups within that realm will be returned (limited by pagination).
- If Search is specified, other criteria will be ignored even though you may set them.
- GetUsersRequestParameters
Optional request parameters for the GetUsersAsync(string, GetUsersRequestParameters?, CancellationToken) endpoint. It can be called in three different ways.
- Don’t specify any criteria. A stream of all users within that realm will be returned (limited by pagination).
- If Search is specified, other criteria such as LastName will be ignored even though you may set them. The Search string will be matched against the FirstName, LastName, Username and the Email of a UserRepresentation.
-
If Search is unspecified but any of LastName, FirstName,
Email or Username are specified, then those criteria are matched against
their respective fields on a UserRepresentation entity. Combined with a logical
AND
.