Skip to main content

Get Vulnerabilities and Alerts for a Service

POST 

/appid/search/api/v1/app/service

Returns the counts of assets, vulnerabilities, and alerts associated with each service.

Note: You need investigateApplicationRql feature with Read 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 Investigate > Applications is enabled.

Request

Body

required
    query string
    applicationId string

Responses

A JSON object containing service vulnerability and alert counts.

Schema
    services object[]

    List of services with associated counts.

  • Array [
  • service string

    The name of the service.

    counts object

    Count details related to the service.

    assetCount integer

    The number of assets associated with the service.

    vulnCount integer

    The number of vulnerabilities associated with the service.

    alertCount integer

    The number of alerts associated with the service.

  • ]
  • nextPageToken string

    Token for fetching the next page of results.

Loading...