Kount Fraud Management
CyoGate integrates with Kount, an AI-powered fraud detection platform, providing real-time risk scoring for online transactions.
How It Works
- Kount's JavaScript collects device fingerprint data at checkout
- The fingerprint is submitted with the transaction
- Kount scores transaction risk in real time (0–100, higher = riskier)
- Rules you configure determine approve / review / decline actions
Frontend Setup
<script src="https://secure.cyogate.net/gateway/Kount.js"
data-merchant-id="YOUR_KOUNT_MERCHANT_ID"></script>
<script>
var kount = new CyoGateKount({
sessionID: generateUniqueSessionID(),
collect: true,
});
// Pass kount.sessionID with your transaction
</script>
Transaction API with Kount
$post = array(
'security_key' => YOUR_PRIVATE_KEY,
'type' => 'sale',
'amount' => '99.99',
'payment_token' => $payment_token,
'kount_session_id' => $session_id,
'email' => $customer_email,
'ipaddress' => $_SERVER['REMOTE_ADDR'],
);
Kount requires a separate merchant account. Contact your CyoGate representative to enable Kount on your account.