Incidents
Get Incident
Use this API to retrieve a single incident by its unique identifier along with the linked assessments, status, and the associated attributes.
get/incident/v1/incidents/{incidentId}
Path parameters
incidentIdstring uuid required
Incident ID
Example:f7114aef-b6b6-42d6-9249-56a467950aa7
ID of the incident. The value can be obtained using Create Incident API.
Response
OK
Example response
{
"id": "1d429adf-26c5-413b-9b01-e7845a5dde99",
"number": 1,
"incidentTypeName": "Misdirected Email",
"name": "Joe sent an email to the wrong client",
"description": "An employee accessed a restricted HR file without proper authorization.\nAccess logs confirmed the breach, and the user’s permissions were immediately revoked.\n",
"sourceType": "INTEGRATION",
"assessmentLinks": [
{
"assessmentName": "Incident Assessment",
"assessmentStatus": "IN_PROGRESS"
}
],
"orgGroupName": "Business Unit",
"rootCause": "The root cause was traced to a lack of validation in the email recipient auto-fill feature,\nleading to sensitive data being sent to the wrong external recipient.\n",
"dateOccurred": "2025-04-21T05:22:40.187Z",
"dateClosed": "2025-04-28T05:22:40.187Z",
"dateDiscovered": "2025-04-21T12:22:40.187Z",
"deadline": "2025-04-23T05:22:40.187Z",
"creator": "User Name",
"assigneeName": "User Name",
"createdDT": "2025-04-21T14:10:00.187Z",
"workflowName": "Default Workflow",
"incidentStageName": "Investigating",
"incidentStageBadgeColor": "InProgress",
"incidentStatus": "OPEN",
"updatedDT": "2025-04-28T05:22:40.187Z",
"attributeValues": {
"customTextAttributeFieldName": [
{
"value": "Attribute Value",
"disabled": false
}
],
"customSingleSelectAttributeFieldName": [
{
"id": "0f5afc29-7fe1-4145-b541-ac33158312b6",
"value": "Option Value 1",
"disabled": false
}
],
"customMultiSelectAttributeFieldName": [
{
"id": "736a8cb4-4e0e-4938-a43f-74edbaf46c0a",
"value": "Option Value 2",
"disabled": false
},
{
"id": "b4e17ed9-5e11-44f8-bb20-100af4d9e39b",
"value": "Option Value 3",
"disabled": false
}
]
},
"incidentAssigneeInformation": [
{
"assigneeName": "User Name"
}
]
}