Fetch a List of Images to be Scanned for a Registry Schedule Job
Shows a list of images to be scanned for a registry schedule job.
Input ParametersInput Parameters
|
Parameter |
Mandatory/Optional |
Data Type |
Description |
|---|---|---|---|
| registryId | Mandatory | string | Provide the ID of the registry for which you want to list the executions. |
| scheduleId |
Mandatory | string | Provide the ID of the schedule for which you want to list the executions. |
| jobId | Mandatory | string | Provide the ID of the Job for which you want to list the images. |
| filter | Optional | string | Filters the schedules list by providing a Qualys Query Language (QQL). |
| pageNumber | Optional | integer | Indicates the page to be displayed. |
| pageSize | Optional | integer | The number of records to be included per page in the response. |
| sort | Optional | string | Sort the results using a Qualys token. |
SampleSample
API request
curl -X 'GET' \
'<qualys_base_url>/csapi/v1.3/registry/0eca6212-a6db-4ca4-bd2a-a8dd3d62b3eb/schedule/1c4e6622-ed4e-4ea1-8bb8-0a9738b7ec2a/executions/227e223f-e3e4-4768-ad5d-508a0d0129f4/images?pageNumber=1&pageSize=50' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <token>
Response
{
"data": [
{
"imageId": "sha256:4c95884bc0994a52c6a1dae0cf5d4289cd7f532f051510cbfe59f5e2616294d8",
"repository": "jas45/tmp",
"tags": "139",
"scannedBy": "3d112f4f-ceb0-4245-9eec-85aa1bfffe5f",
"scanStart": "1762587859533",
"scanEnd": "1762588208343",
"scanErrors": null,
"status": "Scanned",
"isContinuouslyAssessed": null
}
],
"count": 1
}