Skip to main content
PUT
/
v2
/
investigations
/
{alert_id}
/
feedback
Review feedback.
curl --request PUT \
  --url https://api.qevlar.com/v2/investigations/{alert_id}/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "outcome": "INCONCLUSIVE"
}
'
{
  "outcome": "INCONCLUSIVE",
  "description": "<string>",
  "created_by": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "username": "<string>",
    "role": "ADMIN",
    "email": "<string>"
  },
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

alert_id
string<uuid>
required

Body

application/json
description
string | null
required
outcome
enum<string>
required
Available options:
INCONCLUSIVE,
MALICIOUS,
NOT_HARMFUL

Response

FeedbackDTO · object | null

Feedback as been saved.

outcome
enum<string>
required
Available options:
INCONCLUSIVE,
MALICIOUS,
NOT_HARMFUL
description
string | null
required
created_by
UserDTO · object
required
created_at
string<date-time>
required