action randommer_get_api_text_password { label: "Generate password" provider: randommer method: GET path: "/api/Text/Password" encoding: json input: { type: "object" properties: { "X-Api-Key": { type: "string" } hasDigits: { type: "boolean" } hasSpecial: { type: "boolean" } hasUppercase: { type: "boolean" } length: { type: "integer" format: "int32" } } required: ["hasDigits", "hasSpecial", "hasUppercase", "length"] additionalProperties: false } output: { type: "object" additionalProperties: true } }