Page 1 of 1

Adding Flags to DoAuthorize and over-riding basket.Checkout

Posted: Tue Mar 03, 2009 7:42 am
by niall08
Is there any way to add flags to the DoAuthorize function, and over-ride the Checkout function?

I need to state whether the card is present, thereby determining whether the authorisation process should use 3D Secure or not - this situation would arise when the administrator is taking a payment over the telephone.

Would an addition to the accountData array achieve these ends, testing for the content of a particular index before commencing 3D Secure or not?

Re: Adding Flags to DoAuthorize and over-riding basket.Checkout

Posted: Wed Mar 04, 2009 4:22 am
by niall08
Well, I got there in the end - I just added a new entry to the AccountDataDictionary object - e.g.


instrumentBuilder["IsAdminPayment"] = "false";

Testing for this entry in the RealEx DLL allows me to pass the data straight into the "sendAuthorisation" function rather than running through 3D Secure, as a customer would have to.