...
Linking bank accounts: This can be achieved in a single call as shown here, or in separate calls. For unlinking bank accounts use the unlink call.
Code Block | ||||
---|---|---|---|---|
| ||||
{ ..., ..., bankAccounts: [ 12345, { bankAccountNo: 1234567890 }], } Links bank account with key 12345 (already existing) to the business partner. And also creates and links a new bank account with account number 1234567890 to the business partner. |
PUT /BusinessPartner/{key}
...
Links the existing bank account to the given business partner.
POST /BusinessPartner/{key}/BankAccount/{bankAccountKey}/unlink (new in version 1.0.0-alpha10) Anchor unlink unlink
...