Fetch a List of Executions Created for a Registry Schedule

Shows a list of executions created for a Registry Schedule.

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

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.
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?pageNumber=1&pageSize=50' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer <token>'

Response

    {
  "data": [
    {
      "jobUuid": "e0747952-c1c6-47ad-9735-a908ce8084a7",
      "createdTime": "1762518900502",
      "listStartTime": "1762585759730",
      "listEndTime": "1762585807238",
      "listedBy": "3d112f4f-ceb0-4245-9eec-85aa1bfffe5f",
      "listingErrors": null,
      "status": "Finished",
      "totalImages": 1,
      "scannedImages": 1,
      "failedImages": 0,
      "inProgressImages": 0,
      "queuedImages": 0
    }
  ],
  "count": 1
}