NAME
Business::OnlinePayment::PaymenTech - Chase Paymentech backend for Business::OnlinePayment
SYNOPSIS
$trans = new Business::OnlinePayment('PaymenTech'); $trans->content( login => "login", password => "password", merchant_id => "000111222333", terminal_id => "001", type => "CC", card_number => "5500000000000004", expiration => "0211", address => "123 Anystreet", city => "Sacramento", zip => "95824", action => "Normal Authorization", amount => "24.99",
);
$trans->submit; if($trans->is_approved) { print "Approved: ".$trans->authorization;
} else { print "Failed: ".$trans->error_message;
}
NOTES
The only supported transaction types are Normal Authorization and Credit. Paymentech supports separate Authorize and Capture actions as well as recurring billing, but those are not yet implemented.
Electronic check processing is not yet supported.
AUTHOR
Mark Wells, mark@freeside.biz
SEE ALSO
perl(1). Business::OnlinePayment.