logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Business::OnlinePayment::PayConnect - PaymentOne (formerly eBillit) PayConnect backend for

Author

       Ivan Kohler <ivan-payconnect@420.am>

Compatibility

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

Description

       For detailed information see Business::OnlinePayment.

Name

       Business::OnlinePayment::PayConnect - PaymentOne (formerly eBillit) PayConnect  backend for
       Business::OnlinePayment

Note

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

See Also

perl(1). Business::OnlinePayment

perl v5.36.0                                       2022-12-12                                    PayConnect(3pm)

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";
         }

See Also