Monitoring Rules
GET
/compliance/rulesOpen in the API playground →
Info
Configure dynamic rules for transaction monitoring.
Request
Authorizationstringheaderrequired
Bearer olive_live_xxx (Admin)
Response
rulesarray
List of active monitoring rules
Examples
Request
cURL
curl -X GET "https://demo.api.vultlocal.com/api/v1/compliance/rules" \
-H "Authorization: Bearer olive_live_xxx"
Response
200 OK
{
"rules": [
{
"id": 1,
"name": "High Value Alert",
"type": "AMOUNT_THRESHOLD",
"threshold": 10000000,
"action": "FLAG"
},
{
"id": 2,
"name": "Rapid Velocity",
"type": "TRANSACTION_COUNT",
"time_window": "5m",
"threshold": 10,
"action": "BLOCK"
}
]
}