Get List of Scan Jobs
Use this API to retrieve a list of all scan jobs in JSON format for the specified data source. The response will include relevant details for each scan job, including the corresponding scan job ID, created date, and cancelled date.
Path parameters
The unique identifier of the data source.
Query parameters
Status of the job scan
Array of scan levels
The flag to check if the retrieved jobs are Manual or Scheduled
The date (yyyy-mm-dd) to filter the scan jobs created on or after the specified date. For example, including the parameter createdFrom=2022-06-06 will filter results to scan jobs on or after June 6th, 2022.
The date (yyyy-mm-dd) to filter the scan jobs created on or before the specified date. For example, including the parameter createdTo=2022-06-06 would filter results to scan jobs on or before June 6th, 2022.
Results page to be retrieved (0..N).
Results page to be retrieved (0..N).
Number of records per page (1..50). Maximum page size allowed is 50
Number of records per page (1..50). Maximum page size allowed is 50
Sorting criteria in the format: property(,asc|desc). Default is ascending.
Sorting criteria in the format: property(,asc|desc). Default is ascending.
Response
List of scan jobs
Example response
{
"content": [
{
"id": 1,
"name": "Item"
}
],
"size": 20,
"numberOfElements": 15,
"totalElements": 150,
"totalPages": 8,
"first": true
}