action bigredcloud_payments_put { label: "Updates an existing Payment." provider: bigredcloud method: PUT path: "/v1/payments/{id}" encoding: json input: { type: "object" properties: { acCode: { type: "string" } acEntries: { type: "array" items: { type: "object" properties: { accountCode: { type: "string" } analysisCategoryId: { type: "integer" format: "int64" } description: { type: "string" } id: { type: "integer" format: "int64" } value: { type: "number" format: "double" } } } } bankAccountCode: { type: "string" } bankAccountId: { type: "integer" format: "int64" } bookTranTypeId: { type: "integer" format: "int64" } customFields: { type: "array" items: { type: "object" properties: { description: { type: "string" } id: { type: "integer" format: "int64" } userDefinedFieldId: { type: "integer" format: "int64" } value: { type: "string" } } } } detailCollection: { type: "array" items: { type: "string" } } discount: { type: "number" format: "double" } entryDate: { type: "string" format: "date-time" } id: { type: "integer" format: "int64" } note: { type: "string" } plaidTransactionId: { type: "string" } procDate: { type: "string" format: "date-time" } reference: { type: "string" } supplierId: { type: "integer" format: "int64" } timestamp: { type: "string" format: "byte" } total: { type: "number" format: "double" } transferBankCode: { type: "string" } transferBankId: { type: "integer" format: "int64" } unallocated: { type: "number" format: "double" } } required: ["id"] additionalProperties: false } output: { type: "object" } }