Get Vulnerabilities Burndown
GET/uve/api/v2/dashboard/vulnerabilities/burndown
Returns the total count of vulnerabilities and the count of remediated vulnerabilities over the past 30 days.
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 ref
Possible values: [package
, iac
, deployedImage
, vmImage
, registryImage
, host
, serverlessFunction
]
Asset Type
life_cycle ref
Possible values: [code
, build
, deploy
, run
]
Life Cycle
severity ref
Possible values: [critical
, medium
, high
, low
]
Severity
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
dayNum int64
totalCount int64
remediatedCount int64
epochTimestamp int64
{
"dayNum": 0,
"totalCount": 0,
"remediatedCount": 0,
"epochTimestamp": 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...