Has anyone been able to verify the validity of a PayPal account only by the email address?
AdaptiveAccounts GetVerifiedStatus (in PayPal\'s own words) is only for use by
Finde VerifiedStatus On Paypal:(Exists an account on payapal)
GetVerifiedStatusRequest getVerifiedStatusRequest = new GetVerifiedStatusRequest
{
emailAddress = email,
matchCriteria = "NONE"
};
AdaptiveAccountsService service = new AdaptiveAccountsService(Configuration.GetAcctAndConfig());
GetVerifiedStatusResponse response = service.GetVerifiedStatus(getVerifiedStatusRequest);
return response.accountStatus.ToString();