Skip to main content

Overview

Risk Conditions allow you to define rules that evaluate transactions for potential fraud before they reach the payment provider. Rules can block, flag, or require additional verification for suspicious transactions.

How Risk Evaluation Works

Yuno evaluates risk conditions in real time during payment creation. The risk decision is applied before the transaction is sent to the provider.

Creating Risk Conditions

1

Navigate to Risk Conditions

Go to Dashboard > Risk Conditions and click Create Condition.
2

Define the trigger

Select the attributes to evaluate:
AttributeDescriptionExamples
AmountTransaction value thresholdsBlock if amount > $5,000
CountryOrigin or destination countryFlag if country = high-risk list
Card BINCard issuer identificationBlock specific BIN ranges
EmailCustomer email patternsFlag disposable email domains
VelocityTransaction frequencyBlock if > 5 attempts in 1 hour
DeviceDevice fingerprint dataFlag new devices
IP AddressGeolocation and proxy detectionBlock VPN/proxy IPs
3

Set the action

Choose what happens when the condition matches:
ActionEffect
BlockImmediately decline the transaction
FlagProcess but mark for manual review
3DS ChallengeForce 3DS authentication
AllowExplicitly allow (override other conditions)
4

Set priority and activate

Assign a priority (higher priority conditions are evaluated first) and toggle to Active.

Common Risk Rules

Block transactions above a threshold to prevent large fraudulent charges:
Condition: amount > 10000
Action: Block
Message: "Transaction exceeds maximum allowed amount"
Prevent rapid repeated attempts from the same customer:
Condition: same customer_email AND count > 5 in last 1 hour
Action: Block
Message: "Too many payment attempts"
Flag or block transactions from unexpected countries:
Condition: customer_country NOT IN [BR, CO, MX, CL, PE]
Action: Flag for review
Apply rules based on card issuer for known fraud patterns:
Condition: card_bin IN [blocked_bin_list]
Action: Block

Manual Review Queue

Transactions flagged by risk conditions appear in Dashboard > Risk > Review Queue. Reviewers can:
  • Approve: Release the payment for processing
  • Decline: Cancel the transaction
  • Escalate: Forward to a senior reviewer
Configure notification alerts in Settings > Notifications to receive emails when flagged transactions enter the review queue.

Risk Analytics

Monitor fraud prevention performance in Dashboard > Risk > Analytics:
MetricDescription
Block ratePercentage of transactions blocked
Flag ratePercentage flagged for review
False positive rateLegitimate transactions incorrectly blocked
Fraud detection rateFraudulent transactions caught
Overly aggressive risk rules can block legitimate customers. Monitor false positive rates and adjust thresholds regularly. Start with flagging (manual review) before enabling automatic blocking.