Enabling Kount verification with the iframe
Background |
---|
Before starting this tutorial, make sure you understand the following topics from the Quick start section:
|
You can enable Kount verification while saving a card token or running a transaction
with the iframe, with your own form, or through the API.
Nexio will run one of two Risk Inquiry Service (RIS) requests depending on whether customer information (customer.customerRef
) is provided in the request body:
Information Provided | Inquiry Mode |
---|---|
Customer Ref Provided | Kount Central full inquiry with returned thresholds (Inquiry Mode: W) |
Customer Ref Not Provided | Default Inquiry (Inquiry Mode: Q) |
(Please see Kount's documentation for more information on Inquiry Modes.)
Complete these steps to enable Kount verification with Nexio's iframe:
-
Configure Your Account
Contact Integrations Support to ensure Kount is enabled on your merchant account.
-
Prepare the Iframe
Follow steps 1-2 of the Creating a save card page with the iframe or the Creating a card checkout page with the iframe tutorial.
-
Request a One-time-use Token
Request an e-commerce one-time-use token.
Include the object
"processingOptions": { "checkFraud": true }
in the body of your request.curl -X POST https://api.nexiopaysandbox.com/pay/v3/token \ -H 'Content-Type: application/json' \ -H 'Accept: application/json' \ -H 'Authorization: Basic [Base64_encoded_login]' -d '{ "processingOptions": { "checkFraud": true } }'
-
Load the Iframe
Follow steps 4-6 of the Creating a save card page with the iframe or the Creating a card checkout page with the iframe tutorial.
Now, when the iframe is loaded a Kount check will be performed.
Nexio will return the results back to you in the Kount response.
Updated 9 months ago