SYNOPSIS

  use Business::OnlinePayment;

  my $tx = new Business::OnlinePayment("PayConnect",
    'partner' => '',
  );
  $tx->content(
      type           => 'LEC',
      login          => 'test', #ClientID
      password       => 'test',
      action         => 'Authorization Only',
      description    => 'Business::OnlinePayment test',
      amount         => '49.95',
      invoice_number => '100100',
      name           => 'Tofu Beast',
      phone          => '4155554321',
  );
  $tx->submit();

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

DESCRIPTION

For detailed information see Business::OnlinePayment.

NOTE

This module only implements '\s-1LEC\s0' (phone bill billing) functionality at this time. Credit card and \s-1ACH\s0 transactions are not (yet) supported.

COMPATIBILITY

This module implements an interface the \*(L"\s-1HTTPS\s0 \s-1AIO\s0 Validation Protocol version 3.0\*(R" of PaymentOne (formerly eBillit) PayConnect <http://www.paymentone.com/products/paycon.asp>. Unfortunately, no documentation is publicly available.

AUTHOR

Ivan Kohler <[email protected]>

RELATED TO Business::OnlinePayment::PayConnect…

perl\|(1). Business::OnlinePayment