Get Assets and Services of an Application
GET/appid/app/service/:id
Returns details of assets and services associated with an application, including alerts associated with assets.
Note: You need
investigateApplicationRql
feature withRead
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 thatInvestigate
>Applications
is enabled.
Request
Path Parameters
Application ID
Responses
- 200
- 400
A JSON object containing asset and service information.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
- Array [
- ]
assets object[]
List of assets with associated details.
Unique identifier for the asset.
External identifier for the asset.
The type of asset (e.g., Compute).
The name of the asset.
alerts object[]
List of alerts associated with the asset.
Unique identifier for the asset associated with the alert.
Unique identifier for the alert.
policy object
Details of the policy that triggered the alert.
Unique identifier for the policy.
Name of the policy.
Possible values: [low
, medium
, high
, critical
]
Severity level of the policy.
Type of the policy.
Possible values: [HIGH_PRIVILEGED_ROLE
, INTERNET_EXPOSURE
, OTHER
]
Types of findings associated with the policy.
Total number of alerts associated with the asset.
services object[]
List of services with associated details.
Raw service identifier.
Name of the service.
Unique identifier for the service.
Types or categories of the service.
The region where the service is located.
{
"assets": [
{
"unifiedAssetId": "string",
"externalAssetId": "string",
"type": "string",
"name": "string",
"alerts": [
{
"unifiedAssetId": "string",
"alertId": "string",
"policy": {
"policyId": "string",
"name": "string",
"severity": "low",
"policyType": "string",
"findingTypes": [
"HIGH_PRIVILEGED_ROLE"
]
}
}
],
"totalAlertsCount": 0
}
],
"services": [
{
"Raw": "string",
"Name": "string",
"Id": "string",
"Kind": [
"string"
],
"Region": "string"
}
]
}
Invalid request parameters.