Method: ActiveMerchant::Billing::UsaEpayAdvancedGateway#get_check_trace

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

#get_check_trace(options = {}) ⇒ Object

Check status of a check transaction.

Required

  • :reference_number

Response

  • #message – check trace hash



1008
1009
1010
1011
1012
1013
# File 'lib/active_merchant/billing/gateways/usa_epay_advanced.rb', line 1008

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

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