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?
Adding Flags to DoAuthorize and over-riding basket.Checkout
Re: Adding Flags to DoAuthorize and over-riding basket.Checkout
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.
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.