cURL
curl --request GET \ --url http://api.gu1.ai/risk-matrices \ --header 'Authorization: Bearer <token>'
Obter todas as matrizes de risco da organização
Documentation IndexFetch the complete documentation index at: https://docs.gu1.ai/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET http://api.gu1.ai/risk-matrices
{ "riskMatrices": [ { "id": "rm-123", "name": "Matriz de Risco AML", "description": "Avaliação de risco de lavagem de dinheiro", "category": "aml", "status": "active", "version": 1, "scoringConfig": { "minScore": 0, "maxScore": 100, "thresholds": { "low": 30, "medium": 60, "high": 80 } }, "triggers": [ { "name": "Alerta de Alto Risco", "description": "Acionar quando a pontuação exceder 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?