SCA API 2.0
/- Get Organization Vulnerable Libraries Count By Products
Get Organization Scan Count Per Agent.
Get Organization Vulnerable Libraries Count By Projects
Get Organization Libraries Count By Projects.
Get Organization In-House Libraries Count By Projects.
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 Vulnerab...
Returns vulnerable libraries count by products for a given organization.
Security
bearer-key
Filter your search to return items whose property has a specific value. Use the syntax: property:operation:value where a colon (:) separates between property, operation and value.
- Property: the name of the property of the item
- Operation:
- equals - true if the value is identical to this value.
- like - true if the property's value is contained within this value
- regex - true if this regular expression resolves as true. The regex is not case sensitive, and special characters must be escaped with a backslash. Special characters include space, double quote ("), '<', '>', '#', '%', '{', '}', vertical bar ('|'), backslash, '^'. To pass an escaped character in a URL in Postman, encode it first. E.g. to return all items whose value begins with a or A, use regex:^a
- Value: the value of the property.
To combine multiple filters, separate each filter with a semicolon with no space. E.g. property1:operation1:value1;property2:operation2:value2
This endpoint supports filtering on the following properties and its supported operators:
- vulnerabilityId:[equals]:value
- productName:[like | equals | regex]:value
- projectName:[like | equals | regex]:value
GET
curl -i -X GET \
'https://api-saas.mend.io/api/v2.0/orgs/{orgToken}/summary/products/vulnerableLibraryCount?pageSize=50&page=0&search=%7Bsearch%7D' \
-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": [ { … } ] }