We’re having an issue (both on sandbox and on live) where it looks like the CCV (card code) isn’t being processed, even though it looks like we’re passing it in correctly when using createCustomerProfileRequest to capture a prior authorization. When we look at the transactions in our account, the Card Code Status is always “Not Processed”. In our sandbox account, I’ve set our settings to decline transactions if CCV is not processed, and all transactions are declined. (Note: I understand the card code won't be stored, but we want them to be processed [invalid codes being passed in are being authorized])
Based on the docs, it looks like we’re passing it in correctly (I’ve tried using various validationMode values (liveMode, testMode, and none) with no change).
Is there something else we’re missing? I’m including a sample (redacted) XML payload below:
<?xml version="1.0" encoding="UTF-8"?>
<createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">
<merchantAuthentication>
<name>**********</name>
<transactionKey>*******</transactionKey>
</merchantAuthentication>
<refId>20190408154524BRADY</refId>
<profile>
<merchantCustomerId>20190408154524BRADY</merchantCustomerId>
<description>sbrady|foo</description>
<email>test@test.com</email>
<paymentProfiles>
<billTo>
<firstName>Scott</firstName>
<lastName>Brady</lastName>
<address>16015 Main St</address>
<city>Houston</city>
<state>TX</state>
<zip>77084-1234</zip>
<country>US</country>
<phoneNumber>123-123-1234</phoneNumber>
</billTo>
<payment>
<creditCard>
<cardNumber>4111111111111111</cardNumber>
<expirationDate>2020-02</expirationDate>
<cardCode>123</cardCode>
</creditCard>
</payment>
</paymentProfiles>
</profile>
<validationMode>testMode</validationMode>
</createCustomerProfileRequest>
Thanks!
Scott