Get Top Impacting Vulnerabilities V2
GET/uve/api/v2/dashboard/vulnerabilities/prioritised-vuln
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
Returns the CVEs of top critical vulnerabilities in your environment based on the risk score. Each CVE includes risk factors, epssScore, severity, CVSS, risk factors, and assets impacted. This endpoint returns the epss score details in addition to those from Get Top Impacting Vulnerabilities.
Replacement Endpoint: Get Top Impacting Vulnerabilities - POST
Note: You need
vulnerabilityDashboard
feature withView
permission to access this endpoint. Verify if your permission group includes this feature using the Get Permission Group by ID endpoint. You can also check this in the Prisma Cloud console by ensuring that Dashboard > Vulnerability is enabled.
Request
Query Parameters
TopN
Possible values: [code
, build
, deploy
, run
]
Life Cycle
Possible values: [package
, iac
, deployedImage
, vmImage
, registryImage
, host
, serverlessFunction
]
Asset Type
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
cve object[]
assetsImpacted object
{
"lastUpdatedDateTime": 0,
"cve": [
{
"id": "string",
"cvssScore": 0,
"epssScore": 0,
"epssScorePrevious": 0,
"completeEpssScore": 0,
"severity": "string",
"riskFactors": [
"string"
],
"assetsImpacted": {
"codeCount": 0,
"buildCount": 0,
"deployCount": 0,
"runtimeCount": 0
},
"assetsAtRisk": 0
}
]
}
Bad request
- application/json
- Schema
- Example (from schema)
Schema
{
"code": "string",
"message": "string",
"target": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
{
"code": "string",
"message": "string",
"target": "string"
}
User doesn't have required role
- application/json
- Schema
- Example (from schema)
Schema
{
"code": "string",
"message": "string",
"target": "string"
}
Rate Limit Exceeded
- application/json
- Schema
- Example (from schema)
Schema
{
"code": "string",
"message": "string",
"target": "string"
}