action linqr_dispatcher_qrcode_contact_post { label: "Contact QR Code" description: "This endpoint allows you to create a QR Code that allows user to quickly add contact information to the phone book. The code contains an appropriately encoded electronic business card. After scanning, the device prompts to save the contact in the phone book." provider: linqr method: POST path: "/qrcode/contact" encoding: json input: { type: "object" required: ["data"] properties: { data: { description: "`data` property allows you to specify personal information stored as electronic business card in the QR Code. The number and type of supported properties may depend on the QR Code reader software support." 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 } }