Get Application by ID
GEThttps://api.prismacloud.io/appid/api/v2/app/:id
Get details of an application by application ID.
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
id stringrequired
id of app to get details for
Responses
- 200
OK
- application/json
- Schema
- Example (auto)
Schema
idstring
createdAtinteger
metadata object
assets object[]
summary object
{
"id": "string",
"createdAt": 0,
"metadata": {},
"assets": [
{
"unifiedAssetId": "string",
"externalAssetId": "string",
"type": "string",
"assetType": "string",
"name": "string",
"cloudType": "string",
"region": "string",
"apiId": "string",
"alerts": [
{
"unifiedAssetId": "string",
"alertId": "string",
"policy": {
"policyId": "string",
"name": "string",
"severity": "string",
"policyType": "string"
}
}
],
"vuln": [
{
"id": "string",
"score": 0,
"severity": "string"
}
],
"vulnCountBySeverity": {
"critical": 0,
"high": 0,
"medium": 0,
"low": 0
},
"findings": [
{
"id": "string",
"name": "string",
"findingTypes": [
"string"
]
}
],
"findingCountByType": [
{
"type": "string",
"value": 0
}
]
}
],
"summary": {
"cloudTypes": [
"string"
],
"assetCount": {
"total": 0,
"byAlertSeverity": {
"critical": 0,
"high": 0,
"medium": 0,
"low": 0,
"informational": 0
},
"byVulnSeverity": {
"critical": 0,
"high": 0,
"medium": 0,
"low": 0
}
},
"alertCountByPolicyType": [
{
"type": "string",
"value": 0
}
],
"alertCountBySeverity": {
"critical": 0,
"high": 0,
"medium": 0,
"low": 0,
"informational": 0
},
"vulnCountBySeverity": {
"critical": 0,
"high": 0,
"medium": 0,
"low": 0
},
"findingCountByType": [
{
"type": "string",
"value": 0
}
]
}
}
Authorization: x-redlock-auth
name: x-redlock-authtype: apiKeydescription: The x-redlock-auth value is a JSON Web Token (JWT).in: header
- curl
- python
- go
- nodejs
- csharp
- php
- CURL
curl -L 'https://api.prismacloud.io/appid/api/v2/app/:id' \
-H 'Accept: application/json' \
-H 'x-redlock-auth: <x-redlock-auth>'