action quickchart_post_qr { label: "Generate a QR code (POST)" description: "Generate a QR code based on the provided configuration in the request body." provider: quickchart method: POST path: "/qr" encoding: json input: { type: "object" properties: { format: { type: "string" description: "The output format of the QR code, e.g., 'png' or 'svg'." } height: { type: "integer" description: "The height of the QR code in pixels." } margin: { type: "integer" description: "The margin around the QR code in pixels." } text: { type: "string" description: "The text to be encoded in the QR code." } width: { type: "integer" description: "The width of the QR code in pixels." } } } output: { type: "object" additionalProperties: true } }