action bigredcloud_email_send_email_statement { label: "Sends a Statement 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/sendEmailStatement" encoding: json input: { type: "object" properties: { bccAddresses: { type: "array" items: { type: "string" } } customerId: { type: "integer" format: "int64" } fromPeriod: { type: "string" format: "date-time" } messageBody: { type: "string" } minimumBalance: { type: "number" format: "double" } toAddress: { type: "string" } toPeriod: { type: "string" format: "date-time" } } } output: { type: "object" } }