Testing Kount verification
While testing Kount in your sandbox account you may force a status of review
or decline
by using the values listed below.
Any other combination will result in a status of success
.
For additional information about a response, see Understanding the Kount response.
Test Kount verification table
Value | Result |
---|---|
Address 1 or Address 2 contains '456' | review |
Amount between 6.00 and 6.99 | review |
Amount = 7.00 | decline |
Note: The amount values apply for USD currency. If you send a different currency to Kount, the system converts it to USD based on the current currency conversion rates.
Run card transaction examples
The examples below show how to test Kount verification on the Run card transaction endpoint.
curl -X POST https://api.nexiopaysandbox.com/pay/v3/process \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Basic [Base64_encoded_login]'
-d '{
"data": {
"customer": {
"billToAddressOne": "456"
}
},
"tokenex": {
"token": "6ee140a0-05d1-4958-8325-b38a690dbb9d"
},
"processingOptions": {
"checkFraud": true
}
}'
curl -X POST https://api.nexiopaysandbox.com/pay/v3/process \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Basic [Base64_encoded_login]'
-d '{
"data": {
"amount": 7
},
"tokenex": {
"token": "6ee140a0-05d1-4958-8325-b38a690dbb9d"
},
"processingOptions": {
"checkFraud": true
}
}'
Save card token example
To test the Save card token endpoint use any of the values listed in the table above in your request for an ecommerce one-time-use token, then use the token to request a Save card token with iframe.
Updated over 1 year ago