Skip to main content

Forter

When processing transactions through the IXOPAY platform, Forter external risk checks can be utilized to enhance your transaction security. This guide covers the necessary steps to initiate these checks.

Transaction extra data

The proper implementation of Forter risk checks requires specific extraData to be incorporated into calls to the Transaction API. For the specific details on what needs to be included, please refer to Adapters: External Risk - Forter External Risk Adapter.

Initializing the risk script

Depending on the configuration of your risk profile or connector, you might need to manually initialize the Forter risk scripts. There are two scenarios:

In cases where the connector or risk profile associated with your Public Integration Key isn't set to automatically initialize Forter, you need to manually initiate it with payment.js. If Init Scripts Automatically is enabled, no further javascript steps are required for embedding Forter.

<script>
const payment = new PaymentJs("1.2");

payment.init("public-integration-key", "number_div", "cvv_div", (payment) => {
// ...
try {
payment.initRiskScript({ type: "forter" });
} catch (exception) {
//this might happen on an invalid configuration at risk profile or connector level
}
});
</script>

Remember to accurately include all necessary information for successful risk checks with Forter. If you encounter issues, review your connector configuration or the extra data you're providing.