Get User Authentication Info List
GET/v2/authentication-realms/:realmId/user-authentication-info
Retrieve user authentication information for the specified authentication realm.
Filtering
The following operators and attributes are available for filtering unassigned account members.
| Operator | Description |
|---|---|
eq | Matches record where the field matches the value (case insensitive) |
ge | Matches results where the value is greater than or equal to the operand |
gt | Matches results where the value is greater than the operand |
le | Matches results where the value is less than or equal to the operand |
lt | Matches results where the value is less than the operand |
in | Matches results where the value is in one of a set of values |
ilike | Checks whether the operand contains the specified string. You can use wildcard characters at the start or end. (Case Insensitive) |
is_null | Matches records where the field is null. |
| Attribute | Type | Operator | Example |
|---|---|---|---|
email | string | eq,ilike | eq(email,ronswanson@example.com) |
name | string | eq,ilike | ilike(name,*swan*) |
created_at | string | lt, le, eq, gt, ge | lt(created_at,"2025-09-10T22:08:47.992Z") |
updated_at | string | lt, le, eq, gt, ge | gt(updated_at,"2025-09-10T22:08:47.992Z") |
given_name | string | eq,ilike,is_null | is_null('given_name') |
middle_name | string | eq,ilike,is_null | is_null('middle_name') |
family_name | string | eq,ilike,is_null | is_null('family_name') |
Request
Responses
- 200
- 400
- 404
- 422
- 500
OK
Bad Request
Not Found
Unprocessable Entity
Internal server error.