Get Vulnerability Overview V2
GET/uve/api/v2/dashboard/vulnerabilities/overview
deprecated
This endpoint has been deprecated and may be replaced or removed in future versions of the API.
Returns a summary of the total runtime vulnerabilities in your environment which is further divided into runtime Vulnerabilities by Asset and Vulnerabilities that have already been remediated.
info
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.
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
overviewSummary object
totalVulnerableRuntimeAssets object
totalCount int64
deployedImageCount int64
serverlessFunctionCount int64
hostCount int64
totalVulnerabilitiesinRuntime object
totalCount int64
criticalCount int64
highCount int64
mediumCount int64
lowCount int64
totalRemediatedinRuntime object
totalCount int64
criticalCount int64
highCount int64
mediumCount int64
lowCount int64
values object[]
lastUpdatedDateTime int64
totalVulnerabilityCount int64
totalVulnerableAsset int64
totalRemediationCount int64
{
"overviewSummary": {
"totalVulnerableRuntimeAssets": {
"totalCount": 0,
"deployedImageCount": 0,
"serverlessFunctionCount": 0,
"hostCount": 0
},
"totalVulnerabilitiesinRuntime": {
"totalCount": 0,
"criticalCount": 0,
"highCount": 0,
"mediumCount": 0,
"lowCount": 0
},
"totalRemediatedinRuntime": {
"totalCount": 0,
"criticalCount": 0,
"highCount": 0,
"mediumCount": 0,
"lowCount": 0
}
},
"values": [
{
"lastUpdatedDateTime": 0,
"totalVulnerabilityCount": 0,
"totalVulnerableAsset": 0,
"totalRemediationCount": 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...