post https://api.armosec.io/api/v1/vulnerability_v2/image/list
This endpoint retrieves a list of vulnerability images based on user-defined filters. Each image entry in the response includes a summary of vulnerabilities, categorized by severity and other related details.
Examples of Request Objects
For retrieving images based on cluster name, use the following filter:
{
"innerFilters": [
{
"cluster": "cluster-name"
}
]
}
For filtering results by risk factor and severity, use the following filter:
{
"innerFilters": [
{
"riskFactors": "External facing",
"severity": "Critical,High"
}
]
}
It is recommended to narrow down the scope of the request by using the 'since' field to specify a date,
ideally set to 48 hours prior to the current date.
This approach optimizes the search and ensures the relevance of the data retrieved.
{
"since": "2024-04-01T09:37:45.633230367-05:00"
}