PayPal API - Verify that an account is valid / exists / verified

后端 未结 4 1543
面向向阳花
面向向阳花 2021-02-07 10:15

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

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-07 10:40

    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();
    

提交回复
热议问题