action keycloak_get_realm_events { label: "Get events Returns all events, or filters them based on URL query parameters listed here" provider: keycloak method: GET path: "/{realm}/events" encoding: json input: { type: "object" properties: { client: { type: "string" } dateFrom: { type: "string" } dateTo: { type: "string" } first: { type: "integer" format: "int32" } ipAddress: { type: "string" } max: { type: "integer" format: "int32" } type: { type: "array" items: { type: "string" } } user: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }