Skip to main content

Get Vulnerability Overview - POST

POST 

/uve/api/v4/dashboard/vulnerabilities/overview

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. This API supports the account group and account Id filters in addition to the filters we have in the Get Vulnerability Overview V3 endpoint.

Note: You need vulnerabilityDashboard feature with View 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

Body

    assetTypes string[]

    List of Asset Types

    lifeCycle string[]

    List of Asset Life Cycles

    severities string[]

    List of Severities

    accountGroups string[]

    List of Cloud Account Groups

    accountIds string[]

    List of Cloud Account IDs

    clusters string[]

    List of Clusters

    clusterNamespaces string[]

    List of Namespaces

    accountNames string[]

    List of Account Names

Responses

Success

Schema
    overviewSummary object
    totalUniqueCves object
    totalCount int64
    criticalCount int64
    highCount int64
    mediumCount int64
    lowCount int64
    percentageChange int64
    totalVulnerabilities object
    totalCount int64
    criticalCount int64
    highCount int64
    mediumCount int64
    lowCount int64
    percentageChange int64
    totalRemediated object
    totalCount int64
    criticalCount int64
    highCount int64
    mediumCount int64
    lowCount int64
    percentageChange int64
Loading...