Get Top Impacting Vulnerabilities
GET/uve/api/v1/dashboard/vulnerabilities/prioritised-vuln
deprecated
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, severity, CVSS, risk factors, and assets impacted.
info
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
life_cycle string[]required
Life Cycle
Example: code,build,deploy,run
topN int32
Default value: 5
TopN
Example: 5
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
lastUpdatedDateTime int64
cve object[]
id string
cvssScore double
severity string
trends object[]
reportedDate int64
assetsWithCveCount int64
riskFactors string[]
assetsImpacted object
codeCount int64
buildCount int64
deployCount int64
runtimeCount int64
{
"lastUpdatedDateTime": 0,
"cve": [
{
"id": "string",
"cvssScore": 0,
"severity": "string",
"trends": [
{
"reportedDate": 0,
"assetsWithCveCount": 0
}
],
"riskFactors": [
"string"
],
"assetsImpacted": {
"codeCount": 0,
"buildCount": 0,
"deployCount": 0,
"runtimeCount": 0
}
}
]
}
Bad request
- application/json
- Schema
- Example (from schema)
Schema
code string
message string
target string
{
"code": "string",
"message": "string",
"target": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
code string
message string
target string
{
"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
{
"code": "string",
"message": "string",
"target": "string"
}
Rate Limit Exceeded
- application/json
- Schema
- Example (from schema)
Schema
code string
message string
target string
{
"code": "string",
"message": "string",
"target": "string"
}
Loading...