Get Prioritized Vulnerabilities V3
GET/uve/api/v3/dashboard/vulnerabilities/prioritised
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
Returns the top-priority unique vulnerabilities which are aggregated based on the most urgent, exploitable, patchable, and vulnerable packages in use along with the number of assets they occur in. This endpoint also returns vulnerabilities based on internet exposure, in addition to those from Get Prioritized Vulnerabilities V2.
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
Possible values: [package
, iac
, deployedImage
, vmImage
, registryImage
, host
, serverlessFunction
]
Asset Type
Possible values: [code
, build
, deploy
, run
]
Life Cycle
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
urgent object
patchable object
exploitable object
internetExposed object
packageInUse object
{
"lastUpdatedDateTime": 0,
"totalVulnerabilities": 0,
"urgent": {
"vulnerability_count": 0,
"asset_count": 0,
"cve_count": 0
},
"patchable": {
"vulnerability_count": 0,
"asset_count": 0,
"cve_count": 0
},
"exploitable": {
"vulnerability_count": 0,
"asset_count": 0,
"cve_count": 0
},
"internetExposed": {
"vulnerability_count": 0,
"asset_count": 0,
"cve_count": 0
},
"packageInUse": {
"vulnerability_count": 0,
"asset_count": 0,
"cve_count": 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"
}