Method: ActiveMerchant::Billing::NetRegistryGateway#status
- Defined in:
- lib/active_merchant/billing/gateways/net_registry.rb
#status(identification) ⇒ Object
Specific to NetRegistry.
Run a ‘status’ command. This lets you view the status of a completed transaction.
116 117 118 119 120 121 122 |
# File 'lib/active_merchant/billing/gateways/net_registry.rb', line 116 def status(identification) params = { 'TXNREF' => identification } commit(:status, params) end |