IncreaseBilling

STEP 1
Activate and edit the IncreaseBilling gateway.
Enter Title and descriptor
Enter apiURL and apiKey obtained from your IncreaseBilling account
Choose to enable useRecurringAI

STEP 2
IncreaseBilling may require use of their device fingerprint for fraud prevention. This is supported on both CheckoutChamp hosted pages and a direct API integration.
Review IncreaseBilling documentation
Add this script to your checkout page
<script src="https://[API_URL]/checkout/fingerprint"></script>
replace [API_URL] with the apiURL from Step 1
If using CheckoutChamp hosted pages
add a hidden input to the checkout page body below the script tag
<input type="text" id="device_fingerprint" name="fraudSessionId" value="">
If using a direct API integration
add a hidden input to the checkout page body below the script tag
<input type="text" id="device_fingerprint" name="fraudSessionId" value="">
pass the input value as fraudSessionId on the Import Order API call
Last updated