Get Vulnerability Impact by Stage - POST
POST/uve/api/v2/dashboard/vulnerabilities/impact-stage
Returns a summary of vulnerability across app stages of your application lifecycle. This API supports the account group and account Id filters in addition to the filters we have in the Get Vulnerability Impact by Stage endpoint.
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
- application/json
Body
List of Asset Types
List of Asset Life Cycles
List of Severities
List of Cloud Account Groups
List of Cloud Account IDs
List of Clusters
List of Namespaces
List of Account Names
Responses
- 200
- 400
- 401
- 403
- 429
Success
- application/json
- Schema
- Example (from schema)
Schema
code object
run object
deploy object
{
"code": {
"packageCount": 0,
"iac": 0
},
"build": {},
"run": {
"serverlessFunction": 0,
"host": 0,
"deployedImage": 0
},
"deploy": {
"registryImage": 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"
}