Investigation Bulk Feedback

patch

Bulk update investigation feedback feedback.status options:

  • In Review = in_review

  • Reviewed = reviewed

feedback.outcome options:

  • Malicious = COMPLETED_BREACHED_CONFIRMED

  • Suspicious = COMPLETED_BREACHED_SUSPICIOUS

  • Benign = COMPLETED_FALSE_ALERT

  • Inconclusive = INCOMPLETE

  • Ignored = IGNORED

feedback.priority options:

  • Informational = informational

  • Notable = notable

  • Urgent = urgent

Authorizations
Body
investigation_idsnumber[]Required
Responses
200

Feedback updated

application/json
patch
/app/api/v1/investigation-bulk-feedback
PATCH /app/api/v1/investigation-bulk-feedback HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 173

{
  "investigation_ids": [
    1
  ],
  "feedback": {
    "status": "reviewed",
    "outcome": "COMPLETED_BREACHED_CONFIRMED",
    "priority": "informational",
    "outcome_note": "text",
    "exclude_learning": false
  }
}
{
  "investigation_id": 1
}

Last updated

Was this helpful?