NAME

Business::OnlinePayment::iAuthorizer - iAuthorizer.net backend for Business::OnlinePayment

SYNOPSIS

use Business::OnlinePayment;

my $tx = new Business::OnlinePayment("iAuthorizer");
$tx->content('login'       => '...', # login, password, and serial for your account
             'password'    => '...',   
             'serial'      => '...',
             'action'      => 'Normal Authorization',
             'card_number' => '4012888888881',  # test card       
             'expiration'  => '05/05',
             'amount'      => '1.00',
             'address'     => '123 Anystreet',
             'zip'         => '12345',
             'cvv2'        => '1234',
            );

$tx->submit();

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

SUPPORTED TRANSACTION TYPES

All Credit Cards

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

The type field is never required, as the module does not support check transactions.

DESCRIPTION

For detailed information see Business::OnlinePayment.

NOTE

Business::OnlinePayment::iAuthorizer uses the direct response method, and does not support the post back response method.

To settle an authorization-only transaction (where you set action to 'Authorization Only'), submit the nine-digit transaction id code in the field "order_number" with the action set to "Post Authorization". You can get the transaction id from the authorization by calling the order_number method on the object returned from the authorization. You must also submit the amount field with a value less than or equal to the amount specified in the original authorization.

COMPATIBILITY

This module implements iAuthorizer.net's API, but does not support check transactions or the 'post back' response method.

This module has not yet been certified by iAuthorizer.

AUTHOR

Copyright © 2003 Daniel Brooks <db48x@yahoo.com>

Many thanks to Jason Kohles and Ivan Kohler, who wrote and maintain Business::OnlinePayment::AuthorizeNet, which I borrowed heavily from while building this module.

The iAuthorizer.net service is required before this module will function, however the module itself is free software and may be redistributed and/or modified under the same terms as Perl itself.

SEE ALSO

Business::OnlinePayment.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 216:

Non-ASCII character seen before =encoding in '©'. Assuming UTF-8