For more information on the Iridium Gateway please download the documentation from their Merchant Management System.
The login and password are not the username and password you use to login to the Iridium Merchant Management System. Instead, you will use the API username and password you were issued separately.
# File lib/active_merchant/billing/gateways/iridium.rb, line 57 def capture(money, authorization, options = {}) commit(build_reference_request('COLLECTION', money, authorization, options), options) end
# File lib/active_merchant/billing/gateways/iridium.rb, line 61 def credit(money, authorization, options={}) deprecated CREDIT_DEPRECATION_MESSAGE refund(money, authorization, options) end
# File lib/active_merchant/billing/gateways/iridium.rb, line 47 def purchase(money, payment_source, options = {}) setup_address_hash(options) if payment_source.respond_to?(:number) commit(build_purchase_request('SALE', money, payment_source, options), options) else commit(build_reference_request('SALE', money, payment_source, options), options) end end
Generated with the Darkfish Rdoc Generator 2.