I'm doing an integration with Ruby on Rails 3.2. I'm using the authorize.net gem via the DPM method. Everything posts fine and the callback works as expected. The problem is that the transcation response does not include any of the submitted card fields. The following are missing, but I need:
x_card_type
x_account_number
Am I missing something horrendously simple?
05-22-2013 08:55 AM
probably an issue with the SDK.
05-22-2013 09:04 AM
I kept investigating and found out that the SDK captures them, but does not forward them to the receipt page. So they must be immediately extracted from the relay response endpoint. So for example you can do sim_response.custom_fields() to get that information before you forward to the receipt url.
05-22-2013 10:21 AM