Get Vulnerability Overview V3
GET/uve/api/v3/dashboard/vulnerabilities/overview
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
Returns a summary of the total unique vulnerabilities, the count of vulnerabilities, and the count of remediated vulnerabilities, including a breakdown by severity for each category. The percentage reflects the change between the current data and the data from seven days prior.
Replacement Endpoint: Get CVE Overview - 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
Life Cycle
Severity
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
overviewSummary object
totalUniqueCves object
totalVulnerabilities object
totalRemediated object
{
"overviewSummary": {
"totalUniqueCves": {
"totalCount": 0,
"criticalCount": 0,
"highCount": 0,
"mediumCount": 0,
"lowCount": 0,
"percentageChange": 0
},
"totalVulnerabilities": {
"totalCount": 0,
"criticalCount": 0,
"highCount": 0,
"mediumCount": 0,
"lowCount": 0,
"percentageChange": 0
},
"totalRemediated": {
"totalCount": 0,
"criticalCount": 0,
"highCount": 0,
"mediumCount": 0,
"lowCount": 0,
"percentageChange": 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"
}