Skip to content

Get vulnerability suppress details

Request

Get vulnerability suppress details. Provide suppressId/versionId or both as inputs, either of them is mandatory.Only the system administrator has the permission to do this operation.

Security
bearerAuth
Query
suppressIdinteger, (int64), >= 1

ID of suppression

componentVersionIdinteger, (int64), >= 1

Id of component version

limitinteger, (int64), >= 1

Page Size. Number Of Records to fetch per page

Default:25
offsetinteger, (int64), >= 1

Page Number. Index of the page to start with(starts from 1)

Default:1
curl -i -X GET \
  'https://codeinsightapi.redocly.app/_mock/swagger/vulnerability/suppress/details?suppressId=1&componentVersionId=1&limit=25&offset=1' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

OK

Bodyapplication/json
suppressIdinteger, (int64)
vulnerabilityNamestring
componentNamestring
versionIdinteger, (int64)
versionNamestring
suppressedReasonstring
suppressedRemarksstring
suppressedBystring
suppressedDatestring
Response
{ "suppressId": 0, "vulnerabilityName": "string", "componentName": "string", "versionId": 0, "versionName": "string", "suppressedReason": "string", "suppressedRemarks": "string", "suppressedBy": "string", "suppressedDate": "string" }