action linqr_dispatcher_qrcode_text_post { label: "Text QR Code" description: "This endpoint allows you to create a QR Code containing any text, in particular, an URL that may redirect the user to the website. After QR code is scanned, website will be displayed to the user." provider: linqr method: POST path: "/qrcode/text" encoding: json input: { type: "object" required: ["data"] properties: { data: { description: "`data` property allows you to specify the text 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 } }