action linqr_dispatcher_qrcode_geo_post { label: "Geolocation QR Code" description: "This endpoint allows you to create a QR Code that allows to share location with the user. The code contains appropriately encoded geographic coordinates. After scanning the code, device maps application is invoked, pointing to the selected location (address)." provider: linqr method: POST path: "/qrcode/geo" encoding: json input: { type: "object" required: ["data"] properties: { data: { description: "`data` property allows you to specify geographic location (map pin)." 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 } }