Skip to content

threatHuntMatchedSnapshots

List of matched snapshots for a set of file matches.

Arguments

Argument Type Description
huntId (required) String! ID of the threat hunt.
objectFid (required) UUID! FID of the object.
matchIds (required) [Long!]! IDs of the matched files.

Returns

ThreatHuntMatchedSnapshotsReply!

Sample

query ThreatHuntMatchedSnapshots($huntId: String!, $objectFid: UUID!, $matchIds: [Long!]!) {
  threatHuntMatchedSnapshots(
    huntId: $huntId
    objectFid: $objectFid
    matchIds: $matchIds
  )
}
{
  "huntId": "example-string",
  "objectFid": "00000000-0000-0000-0000-000000000000",
  "matchIds": [
    0
  ]
}
{
  "data": {
    "threatHuntMatchedSnapshots": {
      "fileMatches": [
        {
          "filepath": "example-string",
          "matchId": 0
        }
      ]
    }
  }
}