Get Application Summary
GET/appid/api/v2/app/summary
Get the statistical details about applications in your environment such as count of applications discovered, number of vulnerabilities, and so on.
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
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
totalAssets integer
totalApps integer
appsWithVuln integer
appsWithCriticalAlerts integer
newlyDiscoveredApps integer
{
"totalAssets": 0,
"totalApps": 0,
"appsWithVuln": 0,
"appsWithCriticalAlerts": 0,
"newlyDiscoveredApps": 0
}
{
"totalAssets": 43334,
"totalApps": 12,
"newlyDiscoveredApps": 11,
"appsWithVuln": 12,
"appsWithCriticalAlerts": 102
}
Loading...