Versions Compared

Key

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

...

  • Required fields: businessPartner: businessPartnerCode, businessPartnerType, businessPartnerSort  
  •  Unique fields: businessPartner: businessPartnerCode, businessPartnerSort
  •   Linking bank accounts: Can be achieved in a single call (see below), or in separate calls. Use unlink call to unlink bank accounts.
     
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.

...