Skip to content

Shield

Fraud detection — configure risk thresholds, manage blocklists and view fraud statistics.

GEThttps://api.wajub.com/shield/settings

Shield is Wajub's built-in fraud detection system. Configure risk thresholds, block specific customers or IPs, and monitor fraud statistics from the API.

Key endpoints

MethodEndpointDescription
GET/shield/settingsView current fraud detection settings
PUT/shield/settingsUpdate fraud detection thresholds
GET/shield/statsView fraud statistics
GET/shield/blocklistList blocked customers and IPs
POST/shield/blocklistAdd an entry to the blocklist
DELETE/shield/blocklist/{id}Remove an entry from the blocklist

Authentication

Shield requires a private key (sk.…) — public keys cannot access this resource. See Authentication.

GEThttps://api.wajub.com/shield/settings
Request
curl https://api.wajub.com/shield/settings \
-H "Authorization: sk.xxxxxxxxxxxxxxxxxxxxxxxx"
Response · 200 OK
Response
{
"status": "OK",
"code": 200,
"settings": {
  "block_on_fraud_score": true,
  "fraud_score_threshold": 80,
  "require_3ds_threshold": 60,
  "auto_block_chargebacks": true
}
}

Was this page helpful?