Method: ActiveMerchant::Billing::UsaEpayAdvancedGateway#get_transaction_status

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

#get_transaction_status(options = {}) ⇒ Object

Check status of a transaction.

Required

  • :reference_number

Response

  • response.success – success of the referenced transaction

  • response.message – message of the referenced transaction

  • response.authorization – same as :reference_number in options



895
896
897
898
899
900
# File 'lib/active_merchant/billing/gateways/usa_epay_advanced.rb', line 895

def get_transaction_status(options = {})
  requires! options, :reference_number

  request = build_request(__method__, options)
  commit(__method__, request)
end