Question

We're trying to add the IPAddressVelocity filter to our PayFlow Pro account, for fraud detection. In order for this filter to work we need to add CUSTIP to our payment API requests. CUSTIP is to pass along the user's IP address.

We can retrieve the customer's IP, no problem, but how can I add CUSTIP, as a part of my request object?

My suspicion is that this will require overloading Mage core files, but I want to be sure that I'm not missing something. And if that overloading is required, how should I add the new value to the request object?

Was it helpful?

Solution

Found the answer on my own. Created a module to overwrite Mage_Paypal_Model_Payflowpro that overrides _buildPlaceRequest and added the lines:

        $custIp = Mage::helper('core/http')->getRemoteAddr();
        if(!empty($custIp)){
            $request->setData('CUSTIP',$custIp);
        }

And she worked!!

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top