Skip to content

crowdstrikeAlertActivitySummary

Compact actor summary for a single CrowdStrike alert.

Arguments

Argument Type Description
detectionId (required) String! CrowdStrike detection ID.

Returns

CrowdstrikeAlertActivitySummary

Sample

query CrowdstrikeAlertActivitySummary($detectionId: String!) {
  crowdstrikeAlertActivitySummary(detectionId: $detectionId) {
    impactedIdentityProviders
    latestActionTime
    rollbackUrl
    totalRelatedActions
    totalTargetEntities
    totalViolations
  }
}
{
  "detectionId": "example-string"
}
{
  "data": {
    "crowdstrikeAlertActivitySummary": {
      "impactedIdentityProviders": [
        "example-string"
      ],
      "latestActionTime": "2024-01-01T00:00:00.000Z",
      "rollbackUrl": "example-string",
      "totalRelatedActions": 0,
      "totalTargetEntities": 0,
      "totalViolations": 0
    }
  }
}