action apptigent_generate_qrcode { label: "Files - Generate QR code" description: "Generate a QR code image" provider: apptigent method: POST path: "/GenerateQRCode" encoding: json input: { type: "object" required: ["input", "payload"] properties: { input: { type: "string" description: "Text value(s) (vertical bar delimited by type)" } payload: { type: "string" description: "Payload type" enum: ["Plain Text (string)", "Bitcoin Payment (address|amount|label|message)", "Bookmark (url|title)", "Calendar Event (subject|description|location|start|end|allDayEvent['true' or 'false']|format ['universal' or 'iCal'])", "Geolocation (latitude|longitude)", "Mail (recipient|subject|message)", "Phone Number (string)", "SMS (number|message)", "URL (string)", "WiFi (ssid|password|authenticationMode ['WEP', 'WPA' or 'WPA2'])"] } } } output: { type: "object" additionalProperties: true } }