|
NAMEBusiness::MaxMind::CreditCardFraudDetection - Access MaxMind minFraud services VERSIONversion 1.57 SYNOPSIS use Business::MaxMind::CreditCardFraudDetection;
my $minfraud =
Business::MaxMind::CreditCardFraudDetection->new(
isSecure => 1,
debug => 0,
timeout => 10,
);
$minfraud->input(
i => '24.24.24.24',
city => 'New York',
region => 'NY',
postal => '10011',
country => 'US',
domain => 'yahoo.com', # optional
bin => '549099', # optional
binName => 'MBNA America Bank', # optional
binPhone => '800 421 2110', # optional
custPhone => '212-242', # optional Area Code + Local Exchange
user_agent => 'Mozilla/4.0', # optional
accept_language => 'en', # optional
license_key => 'LICENSE_KEY_HERE'
);
$minfraud->query;
my $hash_ref = $minfraud->output;
DESCRIPTIONThis module queries the MaxMind minFraud service and returns the results. The service uses a free e-mail database, an IP address geography database, a bank identification number, and proxy checks to return a risk factor score representing the likelihood that the credit card transaction is fraudulent. METHODS
SEE ALSO<https://www.maxmind.com/en/minfraud-services> AUTHORS
COPYRIGHT AND LICENSEThis software is Copyright (c) 2015 by MaxMind, Inc.. This is free software, licensed under: The GNU General Public License, Version 2, June 1991
|