action fungenerators_get_barcode_encode { label: "get_barcode_encode" description: "Get a Bar Code image for the given barcode number" provider: fungenerators method: GET path: "/barcode/encode" encoding: json input: { type: "object" properties: { barcodeformat: { type: "string" format: "string" } number: { type: "string" format: "string" } outputformat: { type: "string" format: "string" } totalheight: { type: "integer" format: "integer" } widthfactor: { type: "integer" format: "integer" } } required: ["number"] additionalProperties: false } output: { type: "object" additionalProperties: true } }