action linqr_dispatcher_qrcode_phone_post { label: "Telephone QR Code" description: "This endpoint allows you to create a QR Code that allows user to make quick telephone call. The code contains appropriately encoded telephone number. After scanning the code, device dialer is invoked with prefilled phone number. To make a call, the user only needs to press the green phone key." provider: linqr method: POST path: "/qrcode/phone" encoding: json input: { type: "object" required: ["data"] properties: { data: { description: "`data` property allows you to specify telephone number called." 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 } }