As with all software, it’s important to get it working, and then keep it working. Ravelin has multiple features to aid you in testing your integration. To ensure safe usage, the below features are only enabled for sandbox accounts.
You should ensure that you are listening to the action that Ravelin returns, and handling it appropriately.
By default, a Payment Fraud action can be forced by using a customer email with the following email domains:
These values will only work in your sandbox account.
While it’s uncommon, even the most reliable networks can experience occasional delays. Your system should be resilient and maintain performance standards even during these rare instances of slow responses.
We recommend you test your system’s behaviour in response to abnormal increases in latency, whether it be from network problems or from Ravelin’s systems.
We provide a request header to help you test this.
To force requests to take at least a specified duration, add the Ravelin-Min-Latency
header to the request,
with a specified delay in milliseconds.
This is only supported in your sandbox account.
For example, for a 1-second delay:
$ curl "https://api.ravelin.com/v2/checkout" \
-H "Authorization: token sk_live_your_secret_key" \
-H "Ravelin-Min-Latency: 1000" \
-X POST
...
If you run tests against your live infrastructure, and these send fraud data to Ravelin, then it’s very easy to run into trouble with fraud networks.
Here are some things to consider to avoid this.
Ensure you’re handling errors correctly
Get ready to go live with payment fraud recommendations
Was this page helpful?