Fetch a List of Images to be Scanned for a Bulk API Schedule Job of a Registry

Shows a list of images to be scanned for a bulk API schedule job of a registry.

GET/csapi/v1.3/registry/{registryId}/schedule/{scheduleId}/executions/{jobId}/images/bulk

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data Type

Description

registryId Mandatory string Provides the ID of the registry whose images you want to list.
scheduleId Mandatory string Provides the ID of the schedule whose images you want to list.
jobId Mandatory string Provide the Job ID for which you want to list the images.
filter Optional string Filters the Job Image list using a Qualys query syntax.
paginationQuery Optional string Indicates the next page filter query.
limit Optional integer Indicates the number of records per page to be included in the response.
filter Optional string Indicates the policy tag name assigned to the centralized policies.
New value:
policy.tags.name: <tag name>

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/bulk?limit=50' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer <token>

Response

       {
  "data": [
    {
      "imageId": "sha256:087ae3ef328e85ee64e409bcb246b0b66b9ef4ed3dc954e72581e1ec88d9b5ec",
      "repository": "rescan-private",
      "tags": "image987",
      "scannedBy": "f3da1530-3856-4316-8d20-12774d68ae16",
      "scanStart": "1763567593074",
      "scanEnd": null,
      "scanErrors": null,
      "status": "InProgress",
      "isContinuouslyAssessed": null
    },
    {
      "imageId": "sha256:8e99f22f08193af6a88d32785fe86160248346dceb925cce665cd798d15f4663",
      "repository": "rescan-private",
      "tags": "image926",
      "scannedBy": "f3da1530-3856-4316-8d20-12774d68ae16",
      "scanStart": "1763567593039",
      "scanEnd": null,
      "scanErrors": null,
      "status": "InProgress",
      "isContinuouslyAssessed": null
    },
    {
      "imageId": "sha256:45dfcc03ef199cb3203931784e176809d4894d213cb6dca06297aa40ea767d18",
      "repository": "rescan-private",
      "tags": "image222",
      "scannedBy": "f3da1530-3856-4316-8d20-12774d68ae16",
      "scanStart": "1763567593011",
      "scanEnd": null,
      "scanErrors": null,
      "status": "InProgress",
      "isContinuouslyAssessed": null
    },
    .
    .
    .
    ],
  "limit": 50
}