I have a client with a site running in ColdFusion.
The site has 3 places where credit data can be entered - 1 Client Faceing abd 2 in CSR.
What I would like to do so I don't have to totally redo the cart is to save the CC data in AIM and for future billings use CIM.
This is how my AIM code looks now for Direct Post.
<cfhttpparam type="Formfield" name="x_login" value="12345notreallogin">
<cfhttpparam type="Formfield" name="x_tran_key" value="12345notrealkey">
<cfhttpparam type="Formfield" name="x_version" value="3.1">
<cfhttpparam type="Formfield" name="x_test_request" value="FALSE">
<cfhttpparam type="Formfield" name="x_delim_data" value="TRUE">
<cfhttpparam type="Formfield" name="x_delim_char" value=",">
I have been told I can add some variables to save the card data for recall (in CIM) but all I can find so far would be...
<cfhttpparam type="Formfield" name="createProfile" value="TRUE">
<cfhttpparam type="Formfield" name="profile" value="????">
Is this correct?
What would be the "value" for "profile"?
Thanks in advance
โ01-25-2017 01:23 PM
Hello @blameandy1
Unfortunately it's not possible with AIM as it does not include support for customer profiles. Instead, you must move to the full Authorize.Net API using XML or JSON as found in our API Reference.
Richard
โ01-25-2017 03:39 PM - edited โ01-25-2017 03:40 PM