action appwrite_avatars_get_qr { label: "Get QR Code" description: "Converts a given plain text to a QR code image. You can use the query parameters to change the size and style of the resulting image." provider: appwrite method: GET path: "/avatars/qr" encoding: json input: { type: "object" properties: { download: { type: "boolean" } margin: { type: "integer" format: "int32" } size: { type: "integer" format: "int32" } text: { type: "string" } } required: ["text"] additionalProperties: false } output: { type: "object" additionalProperties: true } }