We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I am getting this error:
#<NoMethodError: undefined method `to_xml' for "1969742758":String>
When sending a CreateCustomerProfileFromTransactionRequest like so:
CreateCustomerProfileFromTransactionRequest
transaction = AuthorizeNet::API::Transaction.new(login_id, tx_key, :gateway => gateway) request = CreateCustomerProfileFromTransactionRequest.new request.customerProfileId = "1234567" request.transId = "123456" res = transaction.create_customer_profile_from_transaction(request)
I believe the issue is here: https://github.com/AuthorizeNet/sdk-ruby/blob/master/lib/authorize_net/api/schema.rb#L3465
Should this not have a type setting of NumericStringsType and instead be nothing? According to the API docs this is a simple string.
NumericStringsType