Class UsersRequestBuilder.UsersRequestBuilderGetQueryParameters
- Assembly
- Keycloak.AuthServices.Sdk.Kiota.dll
Get users Returns a stream of users, filtered according to query parameters.
public class UsersRequestBuilder.UsersRequestBuilderGetQueryParameters
- Inheritance
-
UsersRequestBuilder.UsersRequestBuilderGetQueryParameters
- Inherited Members
Properties
BriefRepresentation
Boolean which defines whether brief representations are returned (default: false)
[QueryParameter("briefRepresentation")]
public bool? BriefRepresentation { get; set; }
Property Value
- bool?
A String contained in email, or the complete email, if param "exact" is true
[QueryParameter("email")]
public string? Email { get; set; }
Property Value
EmailVerified
whether the email has been verified
[QueryParameter("emailVerified")]
public bool? EmailVerified { get; set; }
Property Value
- bool?
Enabled
Boolean representing if user is enabled or not
[QueryParameter("enabled")]
public bool? Enabled { get; set; }
Property Value
- bool?
Exact
Boolean which defines whether the params "last", "first", "email" and "username" must match exactly
[QueryParameter("exact")]
public bool? Exact { get; set; }
Property Value
- bool?
First
Pagination offset
[QueryParameter("first")]
public int? First { get; set; }
Property Value
- int?
FirstName
A String contained in firstName, or the complete firstName, if param "exact" is true
[QueryParameter("firstName")]
public string? FirstName { get; set; }
Property Value
IdpAlias
The alias of an Identity Provider linked to the user
[QueryParameter("idpAlias")]
public string? IdpAlias { get; set; }
Property Value
IdpUserId
The userId at an Identity Provider linked to the user
[QueryParameter("idpUserId")]
public string? IdpUserId { get; set; }
Property Value
LastName
A String contained in lastName, or the complete lastName, if param "exact" is true
[QueryParameter("lastName")]
public string? LastName { get; set; }
Property Value
Max
Maximum results size (defaults to 100)
[QueryParameter("max")]
public int? Max { get; set; }
Property Value
- int?
Q
A query to search for custom attributes, in the format 'key1:value2 key2:value2'
[QueryParameter("q")]
public string? Q { get; set; }
Property Value
Search
A String contained in username, first or last name, or email. Default search behavior is prefix-based (e.g., foo or foo*). Use foo for infix search and "foo" for exact search.
[QueryParameter("search")]
public string? Search { get; set; }
Property Value
Username
A String contained in username, or the complete username, if param "exact" is true
[QueryParameter("username")]
public string? Username { get; set; }