Batch update multiple vulnerabilities
Manage
Batch update multiple vulnerabilities
Update status, priority, and/or comment for multiple vulnerabilities at once. Maximum 100 vulnerabilities per request.
PATCH
Batch update multiple vulnerabilities
Documentation Index
Fetch the complete documentation index at: https://docs.cybedefend.com/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
Body
application/json
List of vulnerabilities to update. Each item must contain vulnerabilityId and at least one field to update (status, priority, or comment).
Required array length:
1 - 100 elementsExample:
[
{
"vulnerabilityId": "69da14be-ce56-46d1-8da0-25927da0876f",
"status": "not_exploitable",
"comment": "Reviewed and marked as not exploitable"
},
{
"vulnerabilityId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "resolved"
}
]Response
Batch update results with success/failure per vulnerability
Project unique identifier
Example:
"30244c51-b01b-4306-a1e5-ade3f87303ff"
Total number of vulnerabilities processed
Example:
5
Number of successful updates
Example:
4
Number of failed updates
Example:
1
Detailed results per vulnerability
Example:
[
{
"vulnerabilityId": "69da14be-ce56-46d1-8da0-25927da0876f",
"success": true
},
{
"vulnerabilityId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"success": false,
"error": "Vulnerability not found"
}
]