action linqr_dispatcher_qrcode_email_post { label: "Email QR Code" description: "This endpoint allows the creation of a QR Code allowing the user to quickly send an email. The code contains an appropriately encoded message template. After scanning, the device starts the e-mail client with pre-filled specified fields." provider: linqr method: POST path: "/qrcode/email" encoding: json input: { type: "object" required: ["data"] properties: { data: { description: "`data` property allows you to specify the e-mail template stored in the QR Code." type: "object" } image: { description: "`image` property allows you to set parameters of a custom image (e.g. your company logo, icon etc.) placed in the center of the generated QR Code." type: "object" } output: { description: "`output` property allows you to specify the name and extension (type) of the file returned by the API" type: "object" } size: { description: "`size` property allows you to set the values that define the sizes of the generated QR Code." type: "object" } style: { description: "`style` property allows you to select the appearance parameters of the modules and eyes of the generated QR Code.\n\nAll color specifications can be defined via:\n* CSS3 name: `Black`, `azure`, ...\n* hex value: `0x000`, `#FFFFFF`, `7fffd4`, ...\n* RGB/RGBA strings: `rgb(255, 255, 255)`, `rgba(255, 255, 255, 0.5)`, ...\n* HSL strings: `hsl(270, 60%, 70%)`, `hsl(270, 60%, 70%, .5)`, ...\n\nColor values can be obtained from any online color picker like developer.mozilla.org." type: "object" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }