curl --request GET \
--url http://api.gu1.ai/risk-matrices \
--header 'Authorization: Bearer <token>'Get all risk matrices for organization
curl --request GET \
--url http://api.gu1.ai/risk-matrices \
--header 'Authorization: Bearer <token>'GET http://api.gu1.ai/risk-matrices
{
"riskMatrices": [
{
"id": "rm-123",
"name": "AML Risk Matrix",
"description": "Anti-Money Laundering risk assessment",
"category": "aml",
"status": "active",
"version": 1,
"scoringConfig": {
"minScore": 0,
"maxScore": 100,
"thresholds": {
"low": 30,
"medium": 60,
"high": 80
}
},
"triggers": [
{
"name": "High Risk Alert",
"description": "Trigger when score exceeds 80",
"condition": {
"field": "riskScore",
"operator": "gt",
"value": 80
},
"action": "create_investigation",
"priority": "CRITICAL"
}
],
"tags": ["aml", "compliance"],
"ruleCount": 15,
"activeRuleCount": 12,
"createdAt": "2024-01-15T10:00:00Z"
}
],
"total": 1
}
curl -X GET http://api.gu1.ai/risk-matrices \
-H "Authorization: Bearer YOUR_API_KEY"
Was this page helpful?