
Business::OnlinePayment::eSelectPlus - Moneris eSelect Plus backend module for Business::OnlinePayment

use Business::OnlinePayment;
####
# One step transaction, the simple case.
####
my $tx = new Business::OnlinePayment("eSelectPlus");
$tx->content(
type => 'VISA',
login => 'eSelect Store ID,
password => 'eSelect API Token',
action => 'Normal Authorization',
description => 'Business::OnlinePayment test',
amount => '49.95',
name => 'Tofu Beast',
address => '123 Anystreet',
city => 'Anywhere',
state => 'UT',
zip => '84058',
phone => '420-867-5309',
email => 'tofu.beast@example.com',
card_number => '4005550000000019',
expiration => '08/06',
cvv2 => '1234', #optional
);
$tx->submit();
if($tx->is_success()) {
print "Card processed successfully: ".$tx->authorization."\n";
} else {
print "Card was rejected: ".$tx->error_message."\n";
}

Content required: type, login, password, action, amount, card_number, expiration.

URI::Escape Tie::IxHash Net::SSLeay _or_ ( Crypt::SSLeay and LWP )

For detailed information see Business::OnlinePayment.


Ivan Kohler <ivan-eselectplus@420.am>

perl(1). Business::OnlinePayment.