UnSuppress a vulnerability for given component versions. System administrator only has permission for Global un-suppression, while Developer/Security contact have permission for Project-specific un-suppression.
Note: If a project ID is provided, the un-suppression occurs at the PROJECT level, otherwise, it happens at the GLOBAL level.
Security
bearerAuth
Input model to unSuppress vulnerability
- Mock serverhttps://codeinsightapi.redocly.app/_mock/swagger/vulnerability/unSuppress
- Code Insight REST API Serverhttps://codeinsightapi.redocly.app/codeinsight/api/vulnerability/unSuppress
curl -i -X POST \
https://codeinsightapi.redocly.app/_mock/swagger/vulnerability/unSuppress \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"vulnerabilityName": "Vulnerability Name",
"componentId": 1,
"versionIds": [
0
],
"remarks": "Remarks to Unsuppress Vulnerability",
"projectId": 1
}'