Get summary a scan

Get summary of specific scan of specific image in specific WL

Example: Get the summary of the scans which ran between 2020-11-24 09:37:45 AM and 2020-11-28 05:37:45 AM.
{
"since": "2020-11-24T09:37:45.633230367-05:00", //optional
"until": "2020-11-28T05:37:45.633230937-05:00" //optional
}

Get the summary of the specific scan
{
"innerFilters": [
{
"containersScanID": "58d3d675462fe91f59844e5d8aea8cff347b681dbd2e93d2e96c7a6d1fd4e28d"
}
]
}
Get only scan summaries which has more than 20 fixed high severity vulnerabilities
{
"innerFilters": [
{
"severitiesStats.severity": "High",
"severitiesStats.fixedTotal": "20|greater"
}
]
}
Get only scan summaries which has more than 20 relevant high severity vulnerabilities
{
"innerFilters": [
{
"severitiesStats.severity": "High",
"severitiesStats.totalRelevant": "20|greater"
}
]
}

Language
Authorization
Header
URL
Click Try It! to start a request and see the response here!