action beezup_get_order_invoice_design_settings_preview { label: "View a preview an Order Invoice using custom design settings" provider: beezup method: POST path: "/v2/user/marketplaces/orders/invoices/settings/design/preview" encoding: json input: { type: "object" properties: { "Accept-Encoding": { type: "string" items: { type: "string" } } footerContentHtml: { type: "string" description: "Footer Content HTML" } headerContentHtml: { type: "string" description: "Header Content HTML" } } required: ["Accept-Encoding"] additionalProperties: false } output: { type: "object" required: ["invoiceHtmlContent"] properties: { invoiceHtmlContent: { type: "string" description: "Invoice Content HTML" } } } }