Track Container Scan Status
Track the progress and return data about an on-demand vulnerability scan that was started by calling the POST /api/v2/Vulnerabilities/Containers/scan operation. You must pass in the unique request id returned in the response of the POST Vulnerabilities/Containers/scan operation. For example,
GET https://YourAccount.lacework.net/api/v2/Vulnerabilities/Containers/scan/abcdefgh-123...
When completed, the scan operation returns an evalGuid, which you can use to get the results of the scan by passing it to the "Search Container Vulnerabilities" endpoint:
POST https://YourAccount.lacework.net/api/v2/Vulnerabilities/Containers/search
Pass the evalGuid in the request body, for example:
{ "timeFilter": { "startTime": "2021-08-28T20:30:00Z", "endTime": "2021-08-28T22:30:00Z"}, "filters": [ { "field": "evalGuid", "expression": "eq", "value": "1234567a89012b34567890123cd56e78" } ] }
Path parameters
Assessment Request ID
Headers
Bearer Access Token. For example, "Bearer {YourAPIToken}"
application/json
Response
No Error (Request Status)