GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Network1Financial(3) User Contributed Perl Documentation Network1Financial(3)

Business::OnlinePayment::Network1Financial - Network1 Financial backend for Business::OnlinePayment

  use Business::OnlinePayment;

  my $tx = new Business::OnlinePayment("Network1Financial");
  $tx->content(
      type           => 'CC',
      login          => 'test', #12 Digit ID Number
      password       => 'test', #12 Digit Security Key
      action         => 'Normal Authorization',
      description    => 'Business::OnlinePayment test',
      amount         => '49.95',
      invoice_number => '100100',
      name           => 'Tofu Beast',
      card_number    => '4007000000027',
      expiration     => '09/02',
  );
  $tx->submit();

  if($tx->is_success()) {
      print "Card processed successfully: ".$tx->authorization."\n";
  } else {
      print "Card was rejected: ".$tx->error_message."\n";
  }

For detailed information see Business::OnlinePayment.

This module only implements credit card trasactions at this time. Electronic check (ACH) transactions are not (yet) supported.

This module implements the interface documented at https://va.eftsecure.net/VirtualTerminal/Documentation/

Ivan Kohler <ivan-network1financial@420.am>

perl(1). Business::OnlinePayment
2002-12-25 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.