action beezup_get_order_invoice_preview { label: "View a preview an Order Invoice" provider: beezup method: POST path: "/v2/user/marketplaces/orders/invoices/{marketplaceTechnicalCode}/{accountId}/{beezUPOrderUUID}/preview" encoding: json input: { type: "object" properties: { "Accept-Encoding": { type: "string" items: { type: "string" } } accountId: { type: "string" format: "MarketplaceAccountId" } beezUPOrderUUID: { type: "string" format: "BeezUPOrderUUID" } invoiceSequenceNumber: { type: "integer" description: "Invoice Sequence Number" } marketplaceTechnicalCode: { type: "string" format: "MarketplaceTechnicalCode" } } required: ["Accept-Encoding", "accountId", "beezUPOrderUUID", "marketplaceTechnicalCode"] additionalProperties: false } output: { type: "object" required: ["invoiceHtmlContent"] properties: { invoiceHtmlContent: { type: "string" description: "Invoice Content HTML" } } } }