action keycloak_get_realm_clients { label: "Get clients belonging to the realm Returns a list of clients belonging to the realm" provider: keycloak method: GET path: "/{realm}/clients" encoding: json input: { type: "object" properties: { clientId: { type: "string" } first: { type: "integer" format: "int32" } max: { type: "integer" format: "int32" } search: { type: "boolean" } viewableOnly: { type: "boolean" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }