action billbee_order_api_create_invoice { label: "Create an invoice for an existing order. This request is extra throttled by order and api key to a maximum of 1 per 5 minutes." provider: billbee method: POST path: "/api/v1/orders/CreateInvoice/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } includeInvoicePdf: { type: "boolean" } sendToCloudId: { type: "integer" format: "int64" } templateId: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" } }