ASP.Net, C#
We use the following Post method to charge credit card without leaving our website. It is working perfectly.
WebClient wc = new WebClient();
NameValueCollection form = new NameValueCollection();
form.Add("x_login", _loginId);
...
Byte[] response = wc.UploadValues("https://test.authorize.net/gateway/transact.dll", form);
My question is:
We would like to refer a previous transaction Id (along with LoginID, TransactionKey and Amount) to charge a amount.
Similary to PayPal's DoReferenceTransaction. It basically allow us to charge credit cards (any amount at any time) without storing credit card information at our server.
I got lost since I'm not familiar with Authorize.Net. Could someone please point me a right direction?
Thank in advance!
Solved! Go to Solution.
โ05-20-2012 04:33 PM
If you mean a new authorize and capture transaction from a previous transaction, there isn't any. But you can see if CIM will work for you.
โ05-21-2012 12:58 PM - edited โ05-21-2012 12:59 PM
If you mean a new authorize and capture transaction from a previous transaction, there isn't any. But you can see if CIM will work for you.
โ05-21-2012 12:58 PM - edited โ05-21-2012 12:59 PM