Get response actions status

GET /api/endpoint/action_status

Get the status of response actions for the specified agent IDs.

Query parameters

Responses

GET /api/endpoint/action_status
curl \
 -X GET http://localhost:5622/api/endpoint/action_status?query=%7B%7D
Response examples (200)
{
  "body": {
    "data": {
      "agent_id": "string",
      "pending_actions": {
        "execute": 42,
        "get-file": 42,
        "isolate": 42,
        "kill-process": 42,
        "running-processes": 42,
        "scan": 42,
        "suspend-process": 42,
        "unisolate": 42,
        "upload": 42
      }
    }
  }
}