We recruit individuals to answer surveys to earn income. A big security concern of ours is ensuring the respondents are based in the United States. Luckily PayPal has a Verified and Non-US Verified status. How do we determine someone is Verified (US) via the API? We would like to check that they are Verified (US) before issuing payment via Mass Pay in an automated fashion. Sample code: var mp = new MassPay({ pwd: config.paypal.PAYPAL_PWD, user: config.paypal.PAYPAL_USER, signature: config.paypal.PAYPAL_SIGNATURE, emailsubject: config.paypal.PAYPAL_EMAILSUBJECT, environment: config.paypal.PAYPAL_ENV, }); var batch = new MassPay.PaymentBatch([{"email": "","amount": 12,"uniqueId": userUniqueId,"note": 'cashout for Kurt'}]); mp.pay(batch, function(err, results) {})
... View more