Business::OnlinePayment::PPIPayMover - PPI PayMover backend for Business::OnlinePayment


Business-OnlinePayment-PPIPayMover documentation  | view source Contained in the Business-OnlinePayment-PPIPayMover distribution.

Index


NAME

Top

Business::OnlinePayment::PPIPayMover - PPI PayMover backend for Business::OnlinePayment

SYNOPSIS

Top

  use Business::OnlinePayment;

  my $tx = new Business::OnlinePayment( 'PPIPayMover' );

  $tx->content(
      login          => '195325FCC230184964CAB3A8D93EEB31888C42C714E39CBBB2E541884485D04B', #token
      type           => 'VISA',
      action         => 'Normal Authorization',
      description    => 'Business::OnlinePayment test',
      amount         => '49.95',
      invoice_number => '100100',
      customer_id    => 'jsk',
      name           => 'Grub Tetris',
      address        => '123 Anystreet',
      city           => 'Anywhere',
      state          => 'UT',
      zip            => '84058',
      email          => 'ivan-ppipaymover@420.am',
      card_number    => '4007000000027',
      expiration     => '09/12',
  );
  $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

Top

Visa, MasterCard, American Express, JCB, Discover/Novus, Carte blanche/Di ners Club

DESCRIPTION

Top

For detailed information see Business::OnlinePayment.

BUGS

Top

AUTHOR

Top

Ivan Kohler <ivan-ppipaymover@420.am>

COPYRIGHT AND LICENSE

Top

SEE ALSO

Top

perl(1), Business::OnlinePayment.


Business-OnlinePayment-PPIPayMover documentation  | view source Contained in the Business-OnlinePayment-PPIPayMover distribution.