action keycloak_get_realm_users_count { label: "Returns the number of users that match the given criteria." provider: keycloak method: GET path: "/{realm}/users/count" encoding: json input: { type: "object" properties: { email: { type: "string" } firstName: { type: "string" } lastName: { type: "string" } search: { type: "string" } username: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }