Hi,
I am trying to update bank account of invoices using rest api from postman as follows:
Rest Endpoint:https://eofd-abc.oraclecloud.com/fscmRestApi/resources/11.13.18.05
Method: Post, Content-Type: application/vnd.oracle.adf.batch+json
{
"parts": [
{
"id": "part1",
"path": "/invoices/300006120179834",
"operation": "update",
"payload": {
"invoiceInstallments": [{
"InstallmentNumber": 1,
"BankAccount": "1233303048"
}] }
}
]
}
Response:
part1 failed: BankAccount: The value for the Bank Account attribute is invalid. You must provide a valid value. (AP-810667)
Here " "BankAccount": "1233303048"" is the BANK_ACCOUNT_NUM column value of the CE_BANK_ACCOUNTS where AP_USE_ALLOWED_FLAG='Y'
Basically I want to update the bank account number of the existing invoice in the fusion as shown in the below screenshot

What is wrong here? Appreciate any help!!