Risks
List organization risks
List organization risks with owners, departments, severity, mitigation status, and evidence for risk management reporting.
get/v1/risks
Query parameters
titlestring
Example:data breach
Search by title (case-insensitive contains)
pagenumber
Example:1
Page number (1-indexed)
perPagenumber
Example:50
Number of items per page
sort'createdAt' | 'updatedAt' | 'title' | 'status'
Sort by field
sortDirection'asc' | 'desc'
Sort direction
status'open' | 'pending' | 'closed' | 'archived'
Filter by status
category'customer' | 'fraud' | 'governance' | 'operations' | 'other' | 'people' | 'regulatory' | 'reporting' | 'resilience' | 'technology' | 'vendor_management'
Filter by category
departmentstring
Example:it
Filter by department. Built-in values: none, admin, gov, hr, it, itsm, qms. Custom department names are also accepted.
assigneeIdstring
Example:mem_abc123def456
Filter by assignee member ID
Response
Risks retrieved successfully
Example response
{
"data": [
{
"id": "rsk_abc123def456",
"title": "Data breach vulnerability in user authentication system",
"description": "Weak password requirements could lead to unauthorized access to user accounts",
"category": "technology",
"status": "open",
"likelihood": "possible",
"impact": "major",
"treatmentStrategy": "mitigate",
"assigneeId": "mem_abc123def456"
}
],
"count": 15,
"authenticatedUser": {
"id": "usr_def456ghi789",
"email": "user@example.com"
}
}