Skip to main content

Anyone using Authorize.net?

I submitted a ticket with these questions but figured I'd ask here as well in case other users have similar questions.

Is it currently possible to send more info to Authorize.net when orders are processed?

For example, ideally, it would be possible to send an order description, invoice number string, and line items for each item purchased. All of these are supported by Authorize.net but I don't see any settings inside FluentCart for them.

Thanks in advance!

Thomas Oates

Support confirmed that it is not currently possible to send additional info with the Authorize.net transaction. I got the "it doesn't work now but we'll forward to the dev team for consideration" which is understandable.
Shahjahan JewelΒ Sarkar RiponΒ Instead of adding more elaborate features like this to the Authorize.net payment gateway, would it be possible to simply get an apply_filters line added to the handleSinglePayment and handleFirstPayment functions in AuthorizeDotNetProcessor.php? This simple addition would allow those that need to add more info the ability to do so without making elaborate gateway changes. I tested this in my dev site and it worked perfectly.

Example:
$transactionRequest = apply_filters( 'anet_modify_transactionrequest', $transactionRequest, $paymentInstance );

Screenshot from handleSinglePayment

1.00

Thanks!!!!