Skip to main content

Get Vulnerability Overview V3

GET 

/uve/api/v3/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 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.

info

Replacement Endpoint: Get CVE Overview - POST

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

Query Parameters

    asset_type string[]

    Asset Type

    Example: packages,serverless
    life_cycle string[]

    Life Cycle

    Example: code,build,deploy,run
    severities string[]

    Severity

    Example: critical,high

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...