With this easy to use component you can query the
BadCustomer.com database, then based on the result either approve or decline credit card orders. This component is simple to use, all you need to know is the API Key. This component can be purchased for $
17.77 (USD).
If you do
register please use our affiliate code of 1700.
from PayPal
How to use this component
Add this component as a reference to your .net application, then start encrypting and decrypting. Below is an example of what you can do so you can see how it works. Please do not use the below example for production systems, change the InitVector, You can also set your own Salt and Token.
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim fits As New FastITSolutions.BadCustomer.API
fits.api_key = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
fits.card_number = "4111111111111111"
fits.check()
if fits.Found>0 then
'customer is listed
else
'customer is not listed
end if
End Sub
Response Fields
| Name |
Type |
Description |
| Found |
Integer |
This will give you a count of how many were found in the database |
| Err |
Integer |
This will give you the error code returned from the API |
| Result |
String |
The text result of what was found |
| URL |
String |
The URL where to send the customer |
| transactionId |
String |
The Transaction ID for your API request |
Request Fields
| Name |
Type |
Description |
| api_key* |
String |
Your API key, you will get this when you sign up for an account with badcustomer.com |
| card_number |
String |
Enter the credit card you want to check the database against |
| card_number_hash |
String |
Enter the credit card hash (MD5) you want to check the database against |
| card_holder_name |
String |
Enter the credit holder name (name on the card) you want to check the database against |
| address** |
String |
Enter the address you want to check the database against |
| zip** |
String |
Enter the zip you want to check the database against |
| * |
API Key is always required |
| ** |
address and zip must be used together along with one of the other fields |