action bigredcloud_customers_put { label: "Updates an existing Customer." provider: bigredcloud method: PUT path: "/v1/customers/{id}" encoding: json input: { type: "object" properties: { accountName: { type: "string" } accountNumber: { type: "string" } additionalEmails: { type: "array" items: { type: "string" } } address: { type: "array" items: { type: "string" } } authCode: { type: "string" } bank: { type: "object" properties: { branch: { type: "string" } id: { type: "integer" format: "int64" } name: { type: "string" } sortCode: { type: "string" } } } businessIdentifierCode: { type: "string" } code: { type: "string" } contact: { type: "string" } delivery: { type: "array" items: { type: "string" } } eFTReference: { type: "string" } email: { type: "string" } fax: { type: "string" } id: { type: "integer" format: "int64" } internationalBankAccountNumber: { type: "string" } ledgerBalance: { type: "number" format: "double" } mobile: { type: "string" } name: { type: "string" } openingBalance: { type: "object" properties: { currentMonth: { type: "number" format: "double" } oneMonthOld: { type: "number" format: "double" } threeMonthsOld: { type: "number" format: "double" } twoMonthsOld: { type: "number" format: "double" } } } openingBalances: { type: "array" items: { type: "object" properties: { entryDate: { type: "string" format: "date-time" } id: { type: "integer" format: "int64" } isChanged: { type: "boolean" } procDate: { type: "string" format: "date-time" } reference: { type: "string" } timestamp: { type: "string" format: "byte" } total: { type: "number" format: "double" } totalVAT: { type: "number" format: "double" } unpaid: { type: "number" format: "double" } vatEntries: { type: "array" items: { type: "object" properties: { amount: { type: "number" format: "double" } vatRateId: { type: "integer" format: "int64" } } } } } } } ourCode: { type: "string" } ownerTypeId: { type: "integer" format: "int64" } phone: { type: "string" } timestamp: { type: "string" format: "byte" } vatAnalysisTypeId: { type: "integer" format: "int64" } vatReg: { type: "string" } vatType: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" } }