Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
languagejs
titleLink bank accounts in the same call
{
	...,
	...,
	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. 

 

Anchor
unlink
unlink
POST /BusinessPartner/{key}/BankAccount/{bankAccountKey}/unlink   (new in version 1.0.0-alpha10)

...