Get Prioritized Vulnerabilities V1
GET/uve/api/v1/dashboard/vulnerabilities/prioritised
deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
Returns the count of top-priority vulnerabilities which are aggregated based on the most urgent, exploitable, patchable, and vulnerable packages in use.
info
Replacement Endpoint: Get Prioritized 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
asset_type string[]
Asset Type
Example: packages,serverless
life_cycle string[]
Life Cycle
Example: code,build,deploy,run
risk_factors string[]
Risk Factors
Example: Critical severity, Package in use
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
lastUpdatedDateTime int64
totalVulnerabilities int64
urgent int64
patchable int64
exploitable int64
packageInUse int64
{
"lastUpdatedDateTime": 0,
"totalVulnerabilities": 0,
"urgent": 0,
"patchable": 0,
"exploitable": 0,
"packageInUse": 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...