Security Endpoint Management API
Isolate an endpoint
Spaces method and path for this operation:
<div><span class="operation-verb post">post</span> <span class="operation-path">/s/{space_id}/api/endpoint/action/isolate</span></div>Refer to Spaces for more information.
Isolate an endpoint from the network. The endpoint remains isolated until it's released.
post/api/endpoint/action/isolate
Request body
Example request
{
"agent_type": "endpoint",
"alert_ids": [
"alert-id-1",
"alert-id-2"
],
"case_ids": [
"case-id-1",
"case-id-2"
],
"comment": "This is a comment",
"endpoint_ids": [
"endpoint-id-1",
"endpoint-id-2"
]
}Response
Indicates a successful call.
Example response
{
"data": {
"agentType": "endpoint"
}
}