action keycloak_get_realm_users { label: "Get users Returns a list of users, filtered according to query parameters" provider: keycloak method: GET path: "/{realm}/users" encoding: json input: { type: "object" properties: { briefRepresentation: { type: "boolean" } email: { type: "string" } first: { type: "integer" format: "int32" } firstName: { type: "string" } lastName: { type: "string" } max: { type: "integer" format: "int32" } search: { type: "string" } username: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }