Hi,
I am trying to add authenticationIndicator and cardholderAuthenticationValue to my XML for a single order but can't find any proper examples. Can anyone point me at a full example of XML markup?
Thanks.
Solved! Go to Solution.
02-18-2014 02:35 PM
something like
<transactionRequest>
...
...
<billTo>
....
</billTo>
...
<cardholderAuthentication>
<authenticationIndicator>?</authenticationIndicator>
<cardholderAuthenticationValue>?</cardholderAuthenticationValue>
</cardholderAuthentication>
...
</transactionRequest>
02-18-2014 05:28 PM
It that something new? I don't remember reading that on authorize.net
02-18-2014 03:22 PM
It is used for validating CAVV, it is covered briefly in - http://www.authorize.net/support/AIM_guide_XML.pdf - for example.
02-18-2014 03:34 PM
Is in the schema https://api.authorize.net/xml/v1/schema/AnetApiSchema.xsd
<xs:element name="cardholderAuthentication" type="anet:ccAuthenticationType" minOccurs="0"/>
02-18-2014 04:44 PM
So if i am reading that right, the 2 values are contained in ccAuthenticationType?
When I add those i am getting some errors.
"the element createTransactionRequest" ...has invalid child element "ccAuthenticationType"
When I move it outside of ccAuthenticationType I get a "double root" error.
Anyone have a working XML example of this for a simple transaction?
Thanks!
02-18-2014 05:14 PM
something like
<transactionRequest>
...
...
<billTo>
....
</billTo>
...
<cardholderAuthentication>
<authenticationIndicator>?</authenticationIndicator>
<cardholderAuthenticationValue>?</cardholderAuthenticationValue>
</cardholderAuthentication>
...
</transactionRequest>
02-18-2014 05:28 PM