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