BlueSnap marketplace - will my seller receive money?

I started selling through the market in BlueSnap - I sell subscriptions, and I created supplier accounts in BlueSnap for my promoters who sell for me.

Basically, I created vendor accounts with just the name of the promoter, email, and country:

{ 
    "email": "mark.cooper@gmail.com", 
    "country": "US",
    "firstName": "Mark",
    "lastName": "Cooper"

}

I was told that it is - and that I can sell with these vendor accounts. I sold within a few weeks, and received my share of the subscription fee, but my sellers did not.

I want to figure it out, you know why this happened, how can I fix it for the future - and what can I do to pay for past sales?

+4
source share
1 answer

, , . BlueSnap , . , , . - - .

, , - , 407416 . GET https://ws.bluesnap.com/services/2/vendors/407416, - :

{
   "vendorId": "407416",
   "email": "mark.cooper@gmail.com",
   "name": "Default Vendor",
   "firstName": "Mark",
   "lastName": "Cooper",
   "country": "us",
   "defaultPayoutCurrency": "USD",
   "frequency": "MONTHLY",
   "delay": "7",
   "payoutInfo": {
      "payoutType": "NONE",
      "baseCurrency": "USD",
      "minimalPayoutAmount": "35",
      "country": "us",
      "intermediaryBankInfo": null
   },
   "vendor-agreement": {
      "commissionPercent": "0",
      "accountStatus": "ACTIVE",
      "recurringCommission": "Y"
   },
   "verification": {
      "payoutStatus": "Incomplete",
      "processingStatus": "Active",
      "missingItems": [
         "vendor.phone",
         "vendor.address",
         "vendor.city",
         "vendor.zip",
         "vendor.principal.firstName",
         "vendor.principal.lastName",
         "vendor.principal.address",
         "vendor.principal.city",
         "vendor.principal.country",
         "vendor.principal.zip",
         "vendor.principal.dob",
         "vendor.principal.personalIdentificationNumber",
         "vendor.principal.email",
         "vendor.payout.info.payoutType",
         "vendor.payout.info.baseCurrency",
         "vendor.payout.info.nameOnAccount",
         "vendor.payout.info.bankAccountType",
         "vendor.payout.info.bankAccountClass",
         "vendor.payout.info.bankName",
         "vendor.payout.info.bankId",
         "vendor.payout.info.country",
         "vendor.payout.info.city",
         "vendor.payout.info.address",
         "vendor.payout.info.zip",
         "vendor.payout.info.bankAccountId"
      ]
   }
}

- . :

  • - , .
  • - , - BlueSnap , .
  • , - , , .

. PUT- https://ws.bluesnap.com/services/2/407416 ( ):

{
   "vendorId": "407416",
   "email": "mark.cooper@gmail.com",
   "name": "Default Vendor",
   "firstName": "Mark",
   "lastName": "Cooper",
   "country": "us",
      "phone": "888438829",
      "address": "addedthis street 1",
      "zip": "36662",
      "city": "Detroit",
   "defaultPayoutCurrency": "USD",
   "frequency": "MONTHLY",
   "delay": "7",
     "vendorPrincipal": {
        "firstName": "Mark",
        "lastName": "Cooper",
        "address": "another street 23",
        "city": "Detroit",
        "zip": "3773",
        "country": "US",
        "dob": "12/12/1980",
        "personalIdentificationNumber": "47737299292229",
        "email": "mark.cooper@gmail.com"
     },
   "payoutInfo": {
          "payoutType": "ACH",
      "baseCurrency": "USD",
          "nameOnAccount": "Mark Cooper",
          "bankAccountType": "CHECKING",
          "bankAccountClass": "PERSONAL",
          "bankName": "First Bank of Newton",
          "bankId": "12234",
          "country": "US",
          "state": "KS",
          "city": "Newton",
          "address": "128 E Broadway St",
          "zip": "67114",
          "bankAccountId": "36628822",
      "minimalPayoutAmount": "35",
      "country": "us",
      "intermediaryBankInfo": null
   },
   "vendorAgreement": {
         "commissionPercent": "20",
      "accountStatus": "ACTIVE",
      "recurringCommission": "Y"
   }
}

WS , - . , GET- - . , BlueSnap .

BlueSnap IPN "VENDOR STATUS", , . .

, , /.

+3

Source: https://habr.com/ru/post/1685886/


All Articles