Method: ActiveMerchant::Billing::PayflowExpressGateway#authorize

Defined in:
lib/active_merchant/billing/gateways/payflow_express.rb

#authorize(money, options = {}) ⇒ Object



69
70
71
72
73
# File 'lib/active_merchant/billing/gateways/payflow_express.rb', line 69

def authorize(money, options = {})
  requires!(options, :token, :payer_id)
  request = build_sale_or_authorization_request('Authorization', money, options)
  commit(request, options)
end