-
-
25 Jan 2009 10:53:38 UTC
- Distribution: Business-OnlinePayment-Jettis
- Module version: 0.02
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (417 / 37 / 0)
- Kwalitee
Bus factor: 1- 32.05% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (4.35KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Business::OnlinePayment::Jettis - Jettis backend for Business::OnlinePayment
SYNOPSIS
use Business::OnlinePayment; my $tx = new Business::OnlinePayment("Jettis"); $tx->content( type => 'CHECK', login => 'test', #ClientID action => 'Normal Authorization', description => 'Business::OnlinePayment test', amount => '49.95', invoice_number => '100100', name => 'Tofu Beast', account_number => '12345', routing_code => '123456789', bank_name => 'First National Test Bank', ); $tx->submit(); if($tx->is_success()) { print "Check processed successfully: ".$tx->authorization."\n"; } else { print "Check was rejected: ".$tx->error_message."\n"; }
DESCRIPTION
For detailed information see Business::OnlinePayment.
NOTE
This module only implements 'CHECK' (ACH) functionality at this time. Credit card transactions are not (yet) supported.
COMPATIBILITY
This module implements an interface to Jettis.com's HTTPS API. Unfortunately, no documentation is publicly available. Jettis won't even send their full manual to their customers - they insist on sending only few-page snippets at a time.
AUTHOR
Steve Simitzis <steve@saturn5.com> Ivan Kohler <ivan-jettis@420.am>
SEE ALSO
perl(1). Business::OnlinePayment
Module Install Instructions
To install Business::OnlinePayment::Jettis, copy and paste the appropriate command in to your terminal.
cpanm Business::OnlinePayment::Jettis
perl -MCPAN -e shell install Business::OnlinePayment::Jettis
For more information on module installation, please visit the detailed CPAN module installation guide.