delphi
delphi

Reputation: 11115

ActiveMerchant Authorize.net ARB and CIM Phone?

I am unable to store phone number to either an ARB or CIM profile. Everything else stores perfect, but phone number won't save. We tried '1111111111' as well. Is :phone not the correct option name? Authorize.net has a field for phone number.

We are using the recurring in ARB: http://activemerchant.rubyforge.org/classes/ActiveMerchant/Billing/AuthorizeNetGateway.html#M000399

options = {
    :billing_address => { 
      :name     => 'Mark McBride',
      :address1 => '1 Show Me The Money Lane',
      :city     => 'San Francisco',
      :state    => 'CA',
      :country  => 'US',
      :zip      => '23456',
      :phone    => '(555)555-5555'
    }
  }

Any help would be amazing.

Upvotes: 1

Views: 541

Answers (2)

John Conde
John Conde

Reputation: 219814

You have phone number in the wrong place. Phone number goes under "customer". Not the billing information. Make sure to read the documentation for the proper syntax for each request.

Upvotes: 1

Mahesh
Mahesh

Reputation: 6426

Sorry delphi but you cannot pass phone number in billing address.

Upvotes: 0

Related Questions