
Business::CyberSource::Report::SingleTransaction - Interface to CyberSource's Single Transaction report.

Version 1.1.5

This module is an interface to the Single Transaction report from CyberSource.
use Business::CyberSource::Report;
# Generate a report factory.
my $report_factory = Business::CyberSource::Report->new(
merchant_id => $merchant_id,
username => $username,
password => $password,
);
# Build a Business::CyberSource::Report::SingleTransaction object.
my $single_transaction_report = $report_factory->build( 'SingleTransaction' );
# Retrieve a Single Transaction report by Request ID.
$single_transaction_report->retrieve(
request_id => $request_id,
include_extended_detail => $include_extended_detail,
version => $version,
);
# Retrieve a Single Transaction report using a combination of merchant
# reference number and
$single_transaction_report->retrieve(
merchant_reference_number => $merchant_reference_number,
target_date => $target_date,
include_extended_detail => $include_extended_detail,
version => $version,
);

Build and send the request to CyberSource.
# Retrieve a Single Transaction report by Request ID.
$single_transaction_report->retrieve(
request_id => $request_id,
include_extended_detail => $include_extended_detail,
version => $version,
);
# Retrieve a Single Transaction report using a combination of merchant
# reference number and target date.
$single_transaction_report->retrieve(
merchant_reference_number => $merchant_reference_number,
target_date => $target_date,
include_extended_detail => $include_extended_detail,
version => $version,
);
Parameters:

Guillaume Aubert, <aubertg at cpan.org>.

Please report any bugs or feature requests to bug-business-cybersource-report at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=business-cybersource-report. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc Business::CyberSource::Report::SingleTransaction
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=business-cybersource-report

Thanks to ThinkGeek (http://www.thinkgeek.com/) and its corporate overlords at Geeknet (http://www.geek.net/), for footing the bill while I eat pizza and write code for them!

Copyright 2011-2012 Guillaume Aubert.
This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License.
See http://dev.perl.org/licenses/ for more information.