action bigredcloud_email_send_sales_invoice { label: "Sends a Sales Invoice email. \nIf \"toAddress\" is not empty then email will be sent to this address. Otherwise email will be sent to Sales Invoice Customer's address." provider: bigredcloud method: POST path: "/v1/email/sendSalesInvoice" encoding: json input: { type: "object" properties: { bccAddresses: { type: "array" items: { type: "string" } } messageBody: { type: "string" } salesInvoiceId: { type: "integer" format: "int64" } toAddress: { type: "string" } } } output: { type: "object" } }