SCA API 2.0
/- Get Organization In-House Libraries Count By Projects.
Get Organization Scan Count Per Agent.
Get Organization Vulnerable Libraries Count By Projects
Get Organization Libraries Count By Projects.
Get Organization Vulnerable Libraries Count By Products
Get Organization Libraries Count By Products.
Get Organization In-House Libraries Count By Products.
Get Libraries Count Per License
Get Libraries Count By Language
Get Vulnerability Alerts Count Per Effective Usage Status.
Get Organization Alert Type Summaries
Get Organization Alert Count Per Severity
Get Organization In-House...
Returns the total number of in house libraries (non-unique) for a given organization with a breakdown per project.
Security
bearer-key
GET
curl -i -X GET \
'https://api-saas.mend.io/api/v2.0/orgs/{orgToken}/summary/projects/inHouseLibraries?pageSize=50&page=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'OK
- totalItems: The total count of data points returned in an API response.
- isLastPage: Defines whether the current page represents the conclusion of the API response. When “true”, this signifies you are viewing the last page of the API response. When “false”, this indicates there are further pages remaining.
Example:
{ "totalItems": "422", "isLastPage": "true" }
Response
{ "additionalData": { "totalItems": "422", "isLastPage": "true" }, "supportToken": "1171c60d", "retVal": { "totalOrganizationCount": 34, "projects": [ … ] } }