-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andy Pieters
committed
Jan 18, 2017
1 parent
cd49572
commit 795f176
Showing
3 changed files
with
239 additions
and
535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
$result = \Paynl\Alliance\Merchant::add( | ||
array( | ||
// Required | ||
'companyName' => 'allianceAddTest', | ||
'cocNumber' => '54212458', | ||
'companyName' => 'Addv3Test', | ||
'cocNumber' => '54292456', | ||
'street' => 'Kopersteden', | ||
'houseNumber' => '10', | ||
'postalCode' => '7547 TK', | ||
|
@@ -16,38 +16,52 @@ | |
'accounts' => array( | ||
// Minimum of 1 account, you can add more, one account must be primary, the other accounts cannot be primary | ||
array( | ||
'primary' => true, | ||
// One account must be primary | ||
'email' => '[email protected]', | ||
'firstname' => 'Andy', | ||
'lastname' => 'Pieters', | ||
'gender' => 'male', | ||
'authorisedToSign' => 2, | ||
//0 not authorised, 1 authorised independently, 2 shared authority to sign | ||
'ubo' => true, | ||
// Ultimate beneficial owner (25% of more shares) | ||
'ubo' => 50, //percentage of shares | ||
'hasAccess'=> true, | ||
// 'language' => 'nl', | ||
'useCompanyAuth' => true // All company rights | ||
), | ||
array( | ||
'primary' => false, | ||
'email' => '[email protected]', | ||
'firstname' => 'Mede', | ||
'lastname' => 'Eigenaar', | ||
'gender' => 'female', | ||
'authorisedToSign' => 2, | ||
//0 not authorised, 1 authorised independently, 2 shared authority to sign | ||
'ubo' => true, | ||
// Ultimate beneficial owner (25% of more shares) | ||
'ubo' => 25, //percentage of shares | ||
'hasAccess'=> true, | ||
// 'language' => 'en', | ||
'useCompanyAuth' => false // All company rights | ||
), | ||
array( | ||
'primary' => false, | ||
'email' => '[email protected]', | ||
'firstname' => 'Mede', | ||
'lastname' => 'Eigenaar', | ||
'gender' => 'female', | ||
'authorisedToSign' => 2, | ||
//0 not authorised, 1 authorised independently, 2 shared authority to sign | ||
'ubo' => true, | ||
// Ultimate beneficial owner (25% of more shares) | ||
'ubo' => 25, //percentage of shares | ||
'hasAccess'=> false, | ||
// 'language' => 'de', | ||
'useCompanyAuth' => false // All company rights | ||
), | ||
array( | ||
'email' => '[email protected]', | ||
'firstname' => 'Mede', | ||
'lastname' => 'Eigenaar2', | ||
'gender' => 'female', | ||
'authorisedToSign' => 0, | ||
//0 not authorised, 1 authorised independently, 2 shared authority to sign | ||
'ubo' => false, //percentage of shares | ||
'hasAccess'=> true, | ||
// 'language' => 'de', | ||
'useCompanyAuth' => false // All company rights | ||
), | ||
), | ||
|
||
|
@@ -64,7 +78,7 @@ | |
'bankAccountOwner' => 'Andy Pieters', | ||
'bankAccountNumber' => 'NL91ABNA0417164300', | ||
'bankAccountBIC' => 'ABNANL2A', | ||
'vatNumber' => 'NL123412413', | ||
// 'vatNumber' => 'NL807960147B01', | ||
'packageName' => 'Alliance', // Alliance or AlliancePlus | ||
|
||
// 'referralProfileId' => 'CP-1234-1234', // Only use this if you know what it is | ||
|
Oops, something went wrong.