Reputation: 833
Basically I want my users to associate PayPal account in their accounts for identify verification purposes. I am developing a marketplace site and wanted to integrate paypal as my identity verification procedure.
Is there a way to verify email address, first name and last name using PHP like using $_GET
variables or $_POST
variables? If there is can you show me how?
I tried search and I get Adaptive Accounts GetVerifiedStatus
API. But that totally new to me, I don't know where and how to start.
Upvotes: 10
Views: 1817
Reputation: 950
You could implement GetVerifiedStatus API to determine whether the specified Paypal account's status is verified or unverified.
To use that API, you need to submit the application request to Paypal for approval first. Submission portal link here.
Then use the GetVerifiedStatus API call directly, refer to API request fields,link.
Sample SDK download link.
Upvotes: 2
Reputation: 31634
Your best bet here is to make them start, but not complete, an Express Checkout. A normal Express Checkout (referencing Classic but REST works the same way) looks like this
PAYERSTATUS
, which will tell you if their PayPal account is verified or notUpvotes: 9