-
-
01 Mar 2006 13:43:41 UTC
- Distribution: Business-OnlinePayment-Ingotz
- Module version: 0.01
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (302 / 73 / 0)
- Kwalitee
Bus factor: 0- 21.65% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (2.82KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Business::OnlinePayment::Ingotz - Ingotz backend for Business::OnlinePayment
SYNOPSYS
use Business::OnlinePayment; my $tr = Business::OnlinePayment->new('Ingotz'); $tr->content( login => '6277177700000000', action => 'Normal Authorization', amount => '199', card_number => '312312312312345', pin => '0505', description => '1 Subscription to Pay per Use service L2.00', ); $tr->submit; if ($tr->is_success){ print "Card processed successfully: ".$tr->authorization."\n"; }else{ print "Card processing was failed: ".$tr->error_message."\n"; }
DESCRIPTION
This module allows you to link any e-commerce order processing system directly to Ingotz transaction server (http://www.ingotz.com). All transaction fields are submitted via GET or POST to the secure transaction server at the following URL: https://secure.ingotz.com/process/process.jsp. The following fields are required:
- login - the shop owners Ingotz Merchant account number
- action - type of transaction (must be "Normal Authorization")
- amount - the amount to deduct in pence(points)
- card_number - the customer card number
- pin - the customer pin number
- description - the description to appear on the customers and merchants statements
SEE ALSO
Module Install Instructions
To install Business::OnlinePayment::Ingotz, copy and paste the appropriate command in to your terminal.
cpanm Business::OnlinePayment::Ingotz
perl -MCPAN -e shell install Business::OnlinePayment::Ingotz
For more information on module installation, please visit the detailed CPAN module installation guide.