Blocklist
Block specific emails, phone numbers, IPs, countries, or card BINs outright, bypassing scoring.
2 min read
Shield doesn't have a custom rules DSL — the one deterministic override available is a
blocklist: entries here are blocked outright, regardless of score. There is no equivalent
"allowlist" today; every other decision comes from your review_threshold/block_threshold
(see Quickstart).
Managing the blocklist
typeenumrequiredOne of: email, phone, ip, country, card_bin.
valuestringrequiredThe value to block (e.g. the email address, phone number, IP, ISO country code, or card BIN).
reasonstringoptionalFree-text note for your own records.
curl https://api.wajub.com/shield/blocklist \
-H "Authorization: sk.xxxx" \
-d '{ "type": "phone", "value": "+237690000000", "reason": "confirmed fraud" }'curl https://api.wajub.com/shield/blocklist -H "Authorization: sk.xxxx"
curl -X DELETE https://api.wajub.com/shield/blocklist/{id} -H "Authorization: sk.xxxx"blocklist_enabled must be on
The blocklist only takes effect if blocklist_enabled: true is set on your Shield settings
(see Quickstart).