I'm new to the BlueSnap marketplace - I created some vendors, and I read the documentation - I know that you can start off with email and country:
{
"email": "jane.shopper@bluesnap.com",
"country": "US"
}
but you need more details to make sure the vendor gets paid. I could go for the full details:
{
"email": "vendor@example.com",
"firstName": "Joe",
"lastName": "Smith",
"phone": "1-123-456-7890",
"address": "123 Main Street",
"city": "Boston",
"country": "US",
"state":"MA",
"zip": "123456",
"defaultPayoutCurrency": "USD",
"vendorPrincipal": {
"firstName": "Joe",
"lastName": "Smith",
"address": "123 Main Street",
"city": "Boston",
"country": "US",
"zip": "123456",
"dob": "28-09-9999",
"personalIdentificationNumber": "1234",
"driverLicenseNumber": "561196411",
"email": "individual.vendor@bluesnap.com"
},
"vendorAgreement": {
"commissionPercent": 30
},
"payoutInfo": [{
"payoutType": "ACH",
"baseCurrency": "USD",
"nameOnAccount": "vendor",
"bankAccountType": "CHECKING",
"bankAccountClass": "PERSONAL",
"bankName": "Leumi",
"bankId": "12445",
"country": "US",
"state":"MA",
"city": "Juneau",
"address": "1 bank address",
"zip": "12345",
"bankAccountId": "36628822",
"minimalPayoutAmount": 50
}]
}
I want to define the vendor once, and know it's done and that any sales they do they get paid for. On the other hand, I don't enjoy asking for drivers licenses and all kind of additional information if it's not really needed.
What's the minimal set of fields I should put in to know it's taken care of?