Developer Guide
Screen Order
Screen an order transaction for payment fraud. This REST API will detect all possibles fraud traits based on the input parameters supplied. The more input parameter supplied, the higher accuracy of fraud detection. Protect your online business by signing up for a FREE license.
SIGN UP NOWRequest
Parameter | Type | Description |
---|---|---|
ip | string | (required) IP address of online transaction. It supports both IPv4 and IPv6 address format. |
key | string | (required) API license key. |
format | string |
(optional) Return the result in json or xml format. Valid values: json | xml |
last_name | string | (optional) User's last name. |
first_name | string | (optional) User's first name. |
bill_addr | string | (optional) Street address of billing address. |
bill_city | string | (optional) City of billing address. |
bill_state | string |
(optional) State of billing address. It supports state codes, e.g. NY (New York), for state or province of United States or Canada. |
bill_country | string |
(optional) Country of billing address. It requires the input of ISO-3166 alpha-2 country code, e.g. US for United States. |
bill_zip_code | string | (optional) Postal or ZIP code of billing address. |
ship_last_name | string | (optional) Receiver's last name. |
ship_first_name | string | (optional) Receiver's first name. |
ship_addr | string | (optional) Street address of shipping address. |
ship_city | string | (optional) City of shipping address. |
ship_state | string |
(optional) State of shipping address. It supports state codes, e.g. NY - New York, for state or province of United States or Canada. |
ship_country | string |
(optional) Country of shipping address. It requires the input of ISO-3166 alpha-2 country code, e.g. US for United States. |
ship_zip_code | string | (optional) Postal or ZIP code of shipping address. |
user_phone | string | (optional) User's phone number. |
string | (optional) User's email address. | |
email_hash | string | (optional) SHA1-64k hash of user's email address.
If you have provided the value in the email, then you do not need to supply this email_hash parameter. |
email_domain | string | (optional) Domain name of email address. For example, the domain of email address support@fraudlabspro.com is fraudlabspro.com. If you didn't supply this value, the system will automatically extract the domain name from the email field.
If you have provided the value in the email, then you do not need to supply this email_domain parameter. |
username | string | (optional) The username used in the account sign up, if applicable |
bin_no | string | (optional) First 6 or 8 digits of credit card number to identify issuing bank. |
card_hash | string | (optional) SHA1-64k hash of credit number. |
avs_result | string | (optional) The single character AVS result returned by the credit card processor. |
cvv_result | string |
(optional) The single character CVV2 result returned by the credit card processor. This is not for the input of the actual CVV code from the back of the credit card. |
user_order_id | string | (optional) Merchant identifier to uniquely identify a transaction. It supports maximum of 15 characters user order id input. |
amount | decimal | (optional) Amount of the transaction. |
quantity | integer | (optional) Total quantity of the transaction. |
currency | string |
(optional) Currency code used in the transaction. It requires the input of ISO-4217 (3 characters) currency code, e.g. USD for US Dollar. |
department | string | (optional) Merchant identifier to uniquely identify a product or service department. |
payment_gateway | string | (optional) The name of payment gateway used to capture the payment. |
payment_mode | string |
(optional) Payment mode of transaction. Valid values: creditcard | affirm | paypal | googlecheckout | bitcoin | cod | moneyorder | wired | bankdeposit | elviauthorized | paymitco | cybersource | sezzle | viabill | amazonpay | pmnts_gateway | giftcard | ewayrapid | others. |
flp_checksum | string | (optional) Checksum for the device validation. Please visit Agent Javascript to learn about the use of this parameter. |
Response
Parameter | Type | Description |
---|---|---|
is_country_match | string |
Whether country of IP address matches billing address country. Return values: Y, N, NA (NA means not applicable) |
is_high_risk_country | string |
Whether IP address or billing address country is in the latest high risk list. Return values: Y, N, NA (NA means not applicable) |
distance_in_km | decimal | Distance of location between IP address and bill. Value in kilometer. |
distance_in_mile | decimal | Distance of location between IP address and bill. Value in mile. |
ip_country | string | Estimated country of the IP address. |
ip_region | string | Estimated region of the IP address. |
ip_city | string | Estimated city of the IP address. |
ip_continent | string | Estimated continent of the IP address. |
ip_latitude | string | Estimated latitude of the IP address in 4 precisions. |
ip_longitude | string | Estimated longitude of the IP address in 4 precisions. |
ip_timezone | string | Estimated timezone of the IP address. |
ip_elevation | string | Estimated elevation of the IP address. |
ip_domain | string | Estimated domain name of the IP address. |
ip_mobile_mnc | string | Estimated mobile mnc information of the IP address, if it is a mobile network. |
ip_mobile_mcc | string | Estimated mobile mcc information of the IP address, if it is a mobile network. |
ip_mobile_brand | string | Estimated mobile brand information of the IP address, if it is a mobile network. |
ip_netspeed | string | Estimated netspeed of the IP address. |
ip_isp_name | string | Estimated ISP name of the IP address. |
ip_usage_type | string | Estimated usage type of the IP address. Return values as below:
|
is_free_email | string |
Whether the email is from free email provider. Return values: Y, N, NA (NA means not applicable) |
is_disposable_email | string |
Whether the email is a disposable email. Only applicable for Small Plan onward. Return values: Y, N, NA (NA means not applicable) |
is_new_domain_name | string |
Whether the email domain name a newly registered name. Only applicable for non-free email domain. Return values: Y, N, NA (NA means not applicable) |
is_domain_exists | string |
Whether the email domain name is a valid domain. Return values: Y, N, NA (NA means not applicable) |
is_proxy_ip_address | string |
Whether the IP address is from a known anonymous proxy server. Return values: Y, N, NA (NA means not applicable) |
is_bin_found | string |
Whether the BIN information matches our BIN list. Return values: Y, N, NA (NA means not applicable) |
is_bin_country_match | string |
Whether the country of issuing bank matches BIN country code. Return values: Y, N, NA (NA means not applicable) |
is_bin_prepaid | string |
Whether the credit card is a type of prepaid card. Return values: Y, N, NA (NA means not applicable) |
card_brand | string |
The brand of the card. Available on Medium plan onward only. |
card_type | string |
Whether the card is a type of credit or debit. Available on Medium plan onward only. |
card_issuing_bank | string |
The name of the bank where the card being issued. Available on Medium plan onward only. |
card_issuing_country | string |
The ISO-3166 alpha-2 Country Codes where the card being issued. Available on Medium plan onward only. |
is_address_ship_forward | string |
Whether the shipping address is in database of known mail drops. Return values: Y, N, NA (NA means not applicable) |
is_bill_ship_city_match | string |
Whether the billing city matches the shipping city. Return values: Y, N, NA (NA means not applicable) |
is_bill_ship_state_match | string |
Whether the billing state matches the shipping state. Return values: Y, N, NA (NA means not applicable) |
is_bill_ship_country_match | string |
Whether the billing country matches the shipping country. Return values: Y, N, NA (NA means not applicable) |
is_bill_ship_postal_match | string |
Whether the billing postal/zip code matches the shipping postal/zip code. Return values: Y, N, NA (NA means not applicable) |
is_ip_blacklist | string |
Whether the IP address is in our blacklist database. Return values: Y, N, NA (NA means not applicable) |
is_email_blacklist | string |
Whether the email address is in our blacklist database. Return values: Y, N, NA (NA means not applicable) |
is_credit_card_blacklist | string |
Whether the credit card is in our blacklist database. Return values: Y, N, NA (NA means not applicable) |
is_device_blacklist | string |
Whether the device Id is in our blacklist database. Return values: Y, N, NA (NA means not applicable) |
is_user_blacklist | string |
Whether the username is in our blacklist database. Return values: Y, N, NA (NA means not applicable) |
is_ship_address_blacklist | string |
Whether the ship address is in our blacklist database. Return values: Y, N, NA (NA means not applicable) |
is_phone_blacklist | string |
Whether the user's phone number is in our blacklist database. Return values: Y, N, NA (NA means not applicable) |
is_disposable_phone_number | string |
Whether the phone number is a disposable phone number. Only applicable for Medium Plan onward. Return values: Y, N, NA (NA means not applicable) |
is_high_risk_username | string |
Whether the username is in our high risk database. Return values: Y, N, NA (NA means not applicable) |
is_malware_exploit | string |
Whether the machine is infected. Return values: Y, N, NA (NA means not applicable) |
is_export_controlled_country | string |
Whether the country is from an embargoed country. Return values: Y, N, NA (NA means not applicable) |
user_order_id | string | Return the order identifier given by merchant earlier. |
fraudlabspro_score | integer | Overall score between 1 and 100. 100 is the highest risk and 1 is the lowest risk. |
fraudlabspro_status | string |
Final action based on the rules analysis. Return values: APPROVE | REJECT | REVIEW |
fraudlabspro_id | string | System own unique identifier to identify this API transaction. |
fraudlabspro_rules | string | Return the rules triggered by the system. Available on Mini plan onward only. |
fraudlabspro_version | decimal | Version of the fraud analysis engine used in this transaction. |
fraudlabspro_error_code | integer | Error code in this transaction. |
fraudlabspro_message | string | More information about the status of this transaction. |
fraudlabspro_credits | integer | Balance of queries in your account after this transaction. |
SDK
You may use our official SDK to assist you in code implementation
Sample Codes
<?php
require_once 'lib/FraudLabsPro.php';
// Configures FraudLabs Pro API key
FraudLabsPro\Configuration::apiKey('YOUR_API_KEY');
// Order details
$orderDetails = [
// IP parameter is optional, this library can detects IP address automatically
'ip' => '146.112.62.105',
'order' => [
'orderId' => '67398',
'note' => 'Online shop',
'currency' => 'USD',
'amount' => '79.89',
'quantity' => 1,
// Please refer reference section for full list of payment methods
'paymentMethod' => FraudLabsPro\Order::CREDIT_CARD,
],
'card' => [
'number' => '4556553172971283',
],
'billing' => [
'firstName' => 'Hector',
'lastName' => 'Henderson',
'email' => 'hh5566@gmail.com',
'phone' => '561-628-8674',
'address' => '1766 Powder House Road',
'city' => 'West Palm Beach',
'state' => 'FL',
'postcode' => '33401',
'country' => 'US',
],
'shipping' => [
'address' => '4469 Chestnut Street',
'city' => 'Tampa',
'state' => 'FL',
'postcode' => '33602',
'country' => 'US',
],
];
// Sends the order details to FraudLabs Pro
$result = FraudLabsPro\Order::validate($orderDetails);
import com.fraudlabspro.*;
import java.util.Hashtable;
public class FLP {
public static void main(String[] args) {
// Configures FraudLabs Pro API key
FraudLabsPro.APIKEY = "YOUR_API_KEY";
// Screen Order API
Order order = new Order();
// Sets order details
Hashtable data = new Hashtable<>();
data.put("ip", "146.112.62.105"); // IP parameter is mandatory
data.put("first_name", "Hector");
data.put("last_name", "Henderson");
data.put("email", "hh5566@gmail.com");
data.put("user_phone", "561-628-8674");
// Billing information
data.put("bill_addr", "1766 PowderHouse Road");
data.put("bill_city", "West Palm Beach");
data.put("bill_state", "FL");
data.put("bill_country", "US");
data.put("bill_zip_code", "33401");
data.put("number", "4556553172971283");
// Order information
data.put("user_order_id", "67398");
data.put("user_order_memo", "Online shop");
data.put("amount", "79.89");
data.put("quantity", "1");
data.put("currency", "USD");
data.put("payment_mode", order.CREDIT_CARD); // Please refer reference section for full list of payment methods
// Shipping information
data.put("ship_addr", "4469 Chestnut Street");
data.put("ship_city", "Tampa");
data.put("ship_state", "FL");
data.put("ship_zip_code", "33602");
data.put("ship_country", "US");
String result = order.validate(data); // Sends order details to FraudLabs Pro
}
}
Imports FraudLabsPro.FraudLabsPro
Public Class WebForm1
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'Configure FraudLabs Pro API KEY
FraudLabsProConfig.APIKey = "YOUR_API_KEY"
'Set ScreenOrder parameter
Dim ScreenOrderPara As New OrderPara
'Set order details
ScreenOrderPara.IPAddress = "146.112.62.105" ' IP Parameter is mandatory
ScreenOrderPara.FirstName = "Hector"
ScreenOrderPara.LastName = "Henderson"
ScreenOrderPara.EmailAddress = "hh5566@gmail.com"
'Billing Information
ScreenOrderPara.BillAddress = "1766 PowderHouse Road"
ScreenOrderPara.BillCity = "West Palm Beach"
ScreenOrderPara.BillState = "FL"
ScreenOrderPara.BillCountry = "US"
ScreenOrderPara.BillZIPCode = "33401"
ScreenOrderPara.CardNumber = "4556553172971283"
ScreenOrderPara.UserPhone = "561-628-8674"
'Order Information
ScreenOrderPara.UserOrderID = "67398"
ScreenOrderPara.UserOrderMemo = "Online shop"
ScreenOrderPara.Amount = "79.89"
ScreenOrderPara.Quantity = "1"
ScreenOrderPara.Currency = "USD"
ScreenOrderPara.PaymentMode = Order.PaymentMethods.CREDIT_CARD
'Shipping Information
ScreenOrderPara.ShippingAddress = "4469 Chestnut Street"
ScreenOrderPara.ShippingCity = "Tampa"
ScreenOrderPara.ShippingState = "FL"
ScreenOrderPara.ShippingZIPCode = "33602"
ScreenOrderPara.ShippingCountry = "US"
'ScreenOrder API
Dim ScreenOrder As New Order
Dim result = ScreenOrder.ScreenOrder(ScreenOrderPara) ' Send order to FraudLabs Pro
Response.Write("IsCountryMatch: " + result.IsCountryMatch + "")
Response.Write("IsHighRiskCountry: " + result.IsHighRiskCountry + " ")
Response.Write("DistanceInKM: " + result.DistanceInKM + "")
Response.Write("DistanceInMile: " + result.DistanceInMile + "")
Response.Write("IPCountry: " + result.IPCountry + "")
Response.Write("IPRegion: " + result.IPRegion + "")
Response.Write("IPCity: " + result.IPCity + "")
Response.Write("IPContinent: " + result.IPContinent + "")
Response.Write("IPLatitude: " + result.IPLatitude + "")
Response.Write("IPLongtitude: " + result.IPLongtitude + "")
Response.Write("IPTimeZone: " + result.IPTimeZone + "")
Response.Write("IPElevation: " + result.IPElevation + "")
Response.Write("IPDomain: " + result.IPDomain + "")
Response.Write("IPMobileMNC: " + result.IPMobileMNC + "")
Response.Write("IPMobileMCC: " + result.IPMobileMCC + "")
Response.Write("IPMobileBrand: " + result.IPMobileBrand + "")
Response.Write("IPNetSpeed: " + result.IPNetSpeed + "")
Response.Write("IPISPName: " + result.IPISPName + "")
Response.Write("IPUsageType: " + result.IPUsageType + "")
Response.Write("IsFreeEmail: " + result.IsFreeEmail + "")
Response.Write("IsDisposableEmail: " + result.IsDisposableEmail + "")
Response.Write("IsNewDomainName: " + result.IsNewDomainName + "")
Response.Write("IsDomainExists: " + result.IsDomainExists + "")
Response.Write("IsProxyIPAddress: " + result.IsProxyIPAddress + "")
Response.Write("IsBinFound: " + result.IsBinFound + "")
Response.Write("IsBinCountryMatch: " + result.IsBinCountryMatch + "")
Response.Write("IsBinNameMatch: " + result.IsBinNameMatch + "")
Response.Write("IsBinPhoneMatch: " + result.IsBinPhoneMatch + "")
Response.Write("IsBinPrepaid: " + result.IsBinPrepaid + "")
Response.Write("IsAddressShipForward: " + result.IsAddressShipForward + "")
Response.Write("IsBillShipCityMatch: " + result.IsBillShipCityMatch + "")
Response.Write("IsBillShipStateMatch: " + result.IsBillShipStateMatch + "")
Response.Write("IsBillShipCountryMatch: " + result.IsBillShipCountryMatch + "")
Response.Write("IsBillShipPostalMatch: " + result.IsBillShipPostalMatch + "")
Response.Write("IsIPBlacklist: " + result.IsIPBlacklist + "")
Response.Write("IsEmailBlacklist: " + result.IsEmailBlacklist + "")
Response.Write("IsCreditCardBlacklist: " + result.IsCreditCardBlacklist + "")
Response.Write("IsDeviceBlacklist: " + result.IsDeviceBlacklist + "")
Response.Write("IsUserBlacklist: " + result.IsUserBlacklist + "")
Response.Write("IsShipAddressBlackList: " + result.IsShipAddressBlackList + "")
Response.Write("IsPhoneBlacklist: " + result.IsPhoneBlacklist + "")
Response.Write("IsHighRiskUsername: " + result.IsHighRiskUsername + "")
Response.Write("IsMalwareExploit: " + result.IsMalwareExploit + "")
Response.Write("IsExportControlledCountry: " + result.IsExportControlledCountry + "")
Response.Write("UserOrderID: " + result.UserOrderID + "")
Response.Write("UserOrderMemo: " + result.UserOrderMemo + "")
Response.Write("FraudLabsProScore: " + result.FraudLabsProScore + "")
Response.Write("FraudLabsProDistribution: " + result.FraudLabsProDistribution + "")
Response.Write("FraudLabsProStatus: " + result.FraudLabsProStatus + "")
Response.Write("FraudLabsProID: " + result.FraudLabsProID + "")
Response.Write("FraudLabsProVersion: " + result.FraudLabsProVersion + "")
Response.Write("FraudLabsProErrorCode: " + result.FraudLabsProErrorCode + "")
Response.Write("FraudLabsProMessage: " + result.FraudLabsProMessage + "")
Response.Write("FraudLabsProCredit: " + result.FraudLabsProCredit + "")
End Sub
End Class
using FraudLabsPro.FraudLabsPro;
public class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, System.EventArgs e)
{
// Configure FraudLabs Pro API KEY
FraudLabsProConfig.APIKey = "YOUR_API_KEY";
// Set ScreenOrder parameter
OrderPara ScreenOrderPara = new OrderPara();
// Set order details
ScreenOrderPara.IPAddress = "146.112.62.105"; // IP Parameter is mandatory
ScreenOrderPara.FirstName = "Hector";
ScreenOrderPara.LastName = "Henderson";
ScreenOrderPara.EmailAddress = "hh5566@gmail.com";
// Billing Information
ScreenOrderPara.BillAddress = "1766 PowderHouse Road";
ScreenOrderPara.BillCity = "West Palm Beach";
ScreenOrderPara.BillState = "FL";
ScreenOrderPara.BillCountry = "US";
ScreenOrderPara.BillZIPCode = "33401";
ScreenOrderPara.CardNumber = "4556553172971283";
ScreenOrderPara.UserPhone = "561-628-8674";
// Order Information
ScreenOrderPara.UserOrderID = "67398";
ScreenOrderPara.UserOrderMemo = "Online shop";
ScreenOrderPara.Amount = "79.89";
ScreenOrderPara.Quantity = "1";
ScreenOrderPara.Currency = "USD";
ScreenOrderPara.PaymentMode = Order.PaymentMethods.CREDIT_CARD;
// Shipping Information
ScreenOrderPara.ShippingAddress = "4469 Chestnut Street";
ScreenOrderPara.ShippingCity = "Tampa";
ScreenOrderPara.ShippingState = "FL";
ScreenOrderPara.ShippingZIPCode = "33602";
ScreenOrderPara.ShippingCountry = "US";
// ScreenOrder API
Order ScreenOrder = new Order();
var result = ScreenOrder.ScreenOrder(ScreenOrderPara); // Send order to FraudLabs Pro
Response.Write("IsCountryMatch: " + result.IsCountryMatch + "</br>");
Response.Write("IsHighRiskCountry: " + result.IsHighRiskCountry + " </br>");
Response.Write("DistanceInKM: " + result.DistanceInKM + "</br>");
Response.Write("DistanceInMile: " + result.DistanceInMile + "</br>");
Response.Write("IPCountry: " + result.IPCountry + "</br>");
Response.Write("IPRegion: " + result.IPRegion + "</br>");
Response.Write("IPCity: " + result.IPCity + "</br>");
Response.Write("IPContinent: " + result.IPContinent + "</br>");
Response.Write("IPLatitude: " + result.IPLatitude + "</br>");
Response.Write("IPLongtitude: " + result.IPLongtitude + "</br>");
Response.Write("IPTimeZone: " + result.IPTimeZone + "</br>");
Response.Write("IPElevation: " + result.IPElevation + "</br>");
Response.Write("IPDomain: " + result.IPDomain + "</br>");
Response.Write("IPMobileMNC: " + result.IPMobileMNC + "</br>");
Response.Write("IPMobileMCC: " + result.IPMobileMCC + "</br>");
Response.Write("IPMobileBrand: " + result.IPMobileBrand + "</br>");
Response.Write("IPNetSpeed: " + result.IPNetSpeed + "</br>");
Response.Write("IPISPName: " + result.IPISPName + "</br>");
Response.Write("IPUsageType: " + result.IPUsageType + "</br>");
Response.Write("IsFreeEmail: " + result.IsFreeEmail + "</br>");
Response.Write("IsDisposableEmail: " + result.IsDisposableEmail + "</br>");
Response.Write("IsNewDomainName: " + result.IsNewDomainName + "</br>");
Response.Write("IsDomainExists: " + result.IsDomainExists + "</br>");
Response.Write("IsProxyIPAddress: " + result.IsProxyIPAddress + "</br>");
Response.Write("IsBinFound: " + result.IsBinFound + "</br>");
Response.Write("IsBinCountryMatch: " + result.IsBinCountryMatch + "</br>");
Response.Write("IsBinNameMatch: " + result.IsBinNameMatch + "</br>");
Response.Write("IsBinPhoneMatch: " + result.IsBinPhoneMatch + "</br>");
Response.Write("IsBinPrepaid: " + result.IsBinPrepaid + "</br>");
Response.Write("IsAddressShipForward: " + result.IsAddressShipForward + "</br>");
Response.Write("IsBillShipCityMatch: " + result.IsBillShipCityMatch + "</br>");
Response.Write("IsBillShipStateMatch: " + result.IsBillShipStateMatch + "</br>");
Response.Write("IsBillShipCountryMatch: " + result.IsBillShipCountryMatch + "</br>");
Response.Write("IsBillShipPostalMatch: " + result.IsBillShipPostalMatch + "</br>");
Response.Write("IsIPBlacklist: " + result.IsIPBlacklist + "</br>");
Response.Write("IsEmailBlacklist: " + result.IsEmailBlacklist + "</br>");
Response.Write("IsCreditCardBlacklist: " + result.IsCreditCardBlacklist + "</br>");
Response.Write("IsDeviceBlacklist: " + result.IsDeviceBlacklist + "</br>");
Response.Write("IsUserBlacklist: " + result.IsUserBlacklist + "</br>");
Response.Write("IsShipAddressBlackList: " + result.IsShipAddressBlackList + "</br>");
Response.Write("IsPhoneBlacklist: " + result.IsPhoneBlacklist + "</br>");
Response.Write("IsHighRiskUsername: " + result.IsHighRiskUsername + "</br>");
Response.Write("IsMalwareExploit: " + result.IsMalwareExploit + "</br>");
Response.Write("IsExportControlledCountry: " + result.IsExportControlledCountry + "</br>");
Response.Write("UserOrderID: " + result.UserOrderID + "</br>");
Response.Write("UserOrderMemo: " + result.UserOrderMemo + "</br>");
Response.Write("FraudLabsProScore: " + result.FraudLabsProScore + "</br>");
Response.Write("FraudLabsProDistribution: " + result.FraudLabsProDistribution + "</br>");
Response.Write("FraudLabsProStatus: " + result.FraudLabsProStatus + "</br>");
Response.Write("FraudLabsProID: " + result.FraudLabsProID + "</br>");
Response.Write("FraudLabsProVersion: " + result.FraudLabsProVersion + "</br>");
Response.Write("FraudLabsProErrorCode: " + result.FraudLabsProErrorCode + "</br>");
Response.Write("FraudLabsProMessage: " + result.FraudLabsProMessage + "</br>");
Response.Write("FraudLabsProCredit: " + result.FraudLabsProCredit + "</br>");
}
}
# Import SDK to use the function
from libs.order import Order
# Configure your API key
api_key = 'YOUR_API_KEY'
order_details_variables = {
'key': api_key,
'ip': '146.112.62.105',
'order': {
'order_id': '67398',
'currency': 'USD',
'amount': '42',
'quantity': 1,
'paymentMethod': 'creditcard'
},
'card': {
'number': '4556553172971283'
},
'billing': {
'firstName': 'Hector',
'lastName': 'Henderson',
'email': 'hh5566@gmail.com',
'phone': '561-628-8674',
'address': '1766 Powder House Road',
'city': 'West Palm Beach',
'state': 'FL',
'postcode': '33401',
'country': 'US',
},
'shipping': {
'address': '4469 Chestnut Street',
'city' : 'Tampa',
'state' : 'FL',
'postcode': '33602',
'country': 'US',
}
}
print(Order.validate(order_details_variables))
$ curl https://api.fraudlabspro.com/v1/order/screen -X POST \
-d "key=Enter_License_Key" \
-d "format=json" \
-d "ip=IP_Address" \
-d "bill_city=Cleveland" \
-d "bill_state=OH" \
-d "bill_zip_code=44115" \
-d "bill_country=US" \
-d "ship_addr=4987 Bingamon Road" \
-d "ship_city=Cleveland" \
-d "ship_state=OH" \
-d "ship_zip_code=44115" \
-d "ship_country=US" \
-d "email_domain=gmail.com" \
-d "user_phone=440-5551961" \
-d "email_hash=Email_Hash" \
-d "bin_no=558265" \
-d "bank_name=Bank of Ocean View" \
-d "bank_phone=212-500-2489" \
-d "card_hash=Card_Hash" \
-d "avs_result=Y" \
-d "cvv_result=M" \
-d "user_order_id=7893" \
-d "amount=99.95" \
-d "quantity=1" \
-d "department=Online Store" \
-d "payment_mode=creditcard"
require 'fraudlabspro_ruby'
FraudlabsproRuby::Configuration.api_key = 'YOUR_API_KEY'
result = FraudlabsproRuby::Api::Order.validate(
ip: '146.112.62.105',
first_name: 'Hector',
last_name: 'Henderson',
email: 'hh5566@gmail.com',
phone: '561-628-8674',
# Billing information
bill_addr: '1766 PowderHouse Road',
bill_city: 'West Palm Beach',
bill_state: 'FL',
bill_zip_code: '33401',
bill_country: 'US',
# Order information
user_order_id: '67398',
user_order_memo: 'Online Shop',
amount: '79.89',
quantity: '1',
currency: 'USD',
payment_mode: FraudlabsproRuby::Api::Order::CREDIT_CARD,
card_number: '4556553172971283',
# Shipping information
ship_addr: '4469 Chestnut Street',
ship_city: 'Tampa',
ship_state: 'FL',
ship_zip_code: '33602',
ship_country: 'US'
)
const {FraudValidation} = require("fraudlabspro-nodejs");
var flp = new FraudValidation('YOUR API KEY');
params = {
ip: '146.112.62.105',
user_order_id: '67398',
user_order_memo: 'Online shop',
currency: 'USD',
amount: '79.89',
quantity: 1,
number: '4556553172971283',
payment_mode: 'creditcard',
first_name: 'Hector',
last_name: 'Henderson',
email: 'hh5566@gmail.com',
user_phone: '561-628-8674',
bill_addr: '1766 Powder House Road',
bill_city: 'West Palm Beach',
bill_state: 'FL',
bill_zip_code: '33401',
bill_country: 'US',
ship_addr: '4469 Chestnut Street',
ship_city: 'Tampa',
ship_state: 'FL',
ship_zip_code: '33602',
ship_country: 'US',
};
flp.validate(params, (err, data) => {
if (!err) {
console.log(data);
}
});