Skip to content

downloadThreatHuntCsv

Download threat hunt result in CSV format.

Arguments

Argument Type Description
input (required) DownloadThreatHuntCsvInput! The ID of the threat hunt.

Returns

DownloadThreatHuntCsvReply!

Sample

mutation DownloadThreatHuntCsv($input: DownloadThreatHuntCsvInput!) {
  downloadThreatHuntCsv(input: $input) {
    isSuccessful
  }
}
{
  "input": {
    "huntId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "downloadThreatHuntCsv": {
      "isSuccessful": true
    }
  }
}