Skip to main content

Get Vulnerable Assets

GET 

/uve/api/v1/dashboard/vulnerabilities/vulnerableAsset

deprecated

This endpoint has been deprecated and may be replaced or removed in future versions of the API.

Returns a summary of vulnerable assets and detailed vulnerability statistics, including the total number of vulnerabilities by severity, registry count, package count, repository count, and more, across different stages of your application lifecycle.

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[]

    Possible values: [package, iac, deployedImage, vmImage, registryImage, host, serverlessFunction]

    Asset Type

    life_cycle string[]

    Possible values: [code, build, deploy, run]

    Life Cycle

    severities string[]

    Possible values: [critical, medium, high, low]

    Severity

Responses

Success

Schema
    value object[]
  • Array [
  • stage string
    totalVulnerabilities int64
    assetType string
    totalAssets int64
    stats object[]
  • Array [
  • provider string
    repositories int64
    registries int64
    packages int64
    assets int64
    users int64
    cloudAccounts int64
    vulnerabilities object
    criticalCount int64
    highCount int64
    mediumCount int64
    lowCount int64
  • ]
  • ]
Loading...