Update a specific suspected vulnerability’s status
cURL
curl --request PATCH \ --url https://api.synack.com/v1/suspected_vulnerabilities/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "vulnerability_status_id": 123 } '
{ "id": 123, "asset_uid": "<string>", "category_in_scope": true, "confidence": 123, "cvss_base": 123, "exploitable_locations": [ "<string>" ], "false_positive": true, "created_at": "2023-11-07T05:31:56Z", "last_detected_at": "2023-11-07T05:31:56Z", "payload": {}, "reference_urls": [ "<string>" ], "severity": "<string>", "source": "<string>", "status": "<string>", "vulnerability_status_id": 123, "reason_title": "<string>", "reason_description": "<string>", "organization_profile_id": 123, "automated_triage_status": "<string>", "automated_triage_status_updated_at": "2023-11-07T05:31:56Z" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Suspected vulnerability ID
New vulnerability status ID
Suspected vulnerability updated successfully