Skip to main content

Get Applications by RQL

POST 

/appid/search/api/v1/app

Get the list of applications and its details that matches the search query.

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

Query Parameters

    id string

    Unique identifier for the search query.

    searchType string

    Possible values: [application]

    Type of search.

    saved boolean

    Whether the search query is saved.

    timeRange object

    Time range for the search query.

    query stringrequired

    The actual query string for searching applications.

Responses

A JSON object containing the search results.

Schema
    id string

    The unique identifier of the search result.

    name string

    The name of the search result.

    description string

    The description of the search result.

    searchType string

    The type of search.

    saved boolean

    Indicates if the search is saved.

    timeRange object
    type string

    The type of time range.

    value string

    The value for the time range.

    query string

    The query string used for searching.

    data object
    totalRows integer

    The total number of rows in the result.

    items object[]
  • Array [
  • applicationId string

    The unique identifier of the application.

    name string

    The name of the application.

    owner string

    The owner of the application.

    environment string

    The environment in which the application is running.

    businessCriticality string

    The business criticality of the application.

    type string

    The type of application.

    totalAssets integer

    The total number of assets.

    impactedAssets integer

    The number of impacted assets.

    vulnCount integer

    The count of vulnerabilities.

    alertCount integer

    The count of alerts.

    findingCount integer

    The count of findings.

  • ]
  • nextPageToken string

    Token for fetching the next page of results.

Loading...