94acb422c07d
Create an Escalation Resolution
Allows you to resolve an Escalation. Creating a resolution updates the Escalation's status to resolved. This endpoint requires an API key with permissions to write to Escalations. Note that the default account API key is read-only, so you'll need to create a user-based API key with the appropriate permissions to access this endpoint. The behavior of this endpoint varies by Escalation type so your request should be crafted based on the specific Escalation you are interacting with.
Simple Resolution
For most types of Escalations, a POST to the resolution endpoint with only the Escalation's ID is sufficient. This action resolves the Escalation directly without requiring any additional parameters.
Complex Resolution
For Escalations that have many entities which all require action, a call to this endpoint will bulk resolve all associated entities at once. The determination provided will be applied to every single entity attached to the Escalation. Note that these kinds of Escalation resolutions require extra parameters in their requests.
Escalation types that can resolve multiple associated entities at once are:
- Unwanted Country Access
- Unwanted VPN Access
NOTE: Ommitting both determination and scope params will temporarily resolve the Unwanted Access Escalations. The escalation will reopen upon the next occurrence of the event that created the escalation. This is equivalent to using the "dismiss" option in the portal.
Path parameters
Request body
Response
Create an Escalation Resolution
Example response
{
"escalation": {
"id": 84938,
"account": {
"id": 1,
"name": "Your Account Name"
},
"organizations": [
{
"id": 1234,
"name": "ExampleCo"
}
],
"created_at": "2025-09-05T18:20:34Z",
"resolved_at": "2025-09-05T18:20:34Z",
"severity": "low",
"status": "resolved",
"subject": "Defender Disabled",
"subtype": "US",
"type": "Environmental Issue",
"updated_at": "2025-09-05T18:20:34Z",
"entities": {
"total_count": 1,
"has_more": false,
"items": [
{
"id": 1,
"type": "Agent",
"details": {
"hostname": "laptop01",
"platform": "windows",
"os": "Windows 8 Pro",
"last_callback_at": "2025-09-05T18:20:35Z"
}
}
]
}
},
"resolution_method": "rule"
}