action api2pdf_zebra_get { label: "Generate bar codes and QR codes with ZXING." description: "See full list of options and documentation [here](https://www.api2pdf.com/documentation/advanced-options-zxing-zebra-crossing-barcodes/)\n### Authorize via Query String Parameter\n**apikey=YOUR-API-KEY**\n### Example\n``` https://v2018.api2pdf.com/zebra?format={format}&apikey={YourApiKey}&value={YourText} ``` " provider: api2pdf method: GET path: "/zebra" encoding: json input: { type: "object" properties: { format: { type: "string" } height: { type: "integer" } showlabel: { type: "boolean" } value: { type: "string" } width: { type: "integer" } } required: ["format", "value"] additionalProperties: false } output: { type: "object" additionalProperties: true } }