You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When crafting the CreateCustomerProfileRequest and populating the profile via the setProfile method with a CustomerProfileType an E00001 error is thrown when the email starts with four x characters.
Example
In this example the email xxxxJohnSmith@yahoo.com will throw an E00001 error code
$customerprofile = new AnetAPI\CustomerProfileType();
$customerprofile->setDescription('John Smith);
$customerprofile->setEmail('xxxxJohnSmith@yahoo.com');
$request = new AnetAPI\CreateCustomerProfileRequest();
$request->setMerchantAuthentication($merchantAuthentication);
$request->setProfile($customerprofile);
$controller = new AnetController\CreateCustomerProfileController($request);
$response = $controller->executeWithApiResponse( ANetEnvironment::SANDBOX );
The text was updated successfully, but these errors were encountered:
Conditions
When crafting the
CreateCustomerProfileRequest
and populating the profile via thesetProfile
method with aCustomerProfileType
anE00001
error is thrown when the email starts with fourx
characters.Example
In this example the email
xxxxJohnSmith@yahoo.com
will throw anE00001
error codeThe text was updated successfully, but these errors were encountered: