Scanner
Bulk Rescan
Create new private scans from multiple existing scans.
The response contains one result for each requested scan. A result with status: created includes the newly created scan. A result with status: error includes an explanation of why that scan could not be rescanned.
post/api/scanner/bulk_rescan/
Request body
Example request
{
"ids": [
123
]
}Response
Bulk Rescan Results
Example response
[
{
"scan": {
"id": 89,
"name": "Test Scan",
"label": "1764230724-u6lrerkpx",
"targets": [
"1.1.1.1"
],
"created_at": "2025-11-27T08:05:24.518270Z",
"owner": {
"email": "user@netlas.io",
"first_name": "FName",
"last_name": "LName",
"teams": []
},
"is_scan_from_team": false,
"mode": "top_tcp_ports",
"state": "done",
"rescan_of": null,
"agent": {
"id": 5,
"description": "DEMO agent",
"name": "demo-1",
"label": "demo-1",
"location": "RO",
"ip_address": [
"2.57.122.18",
"2.57.122.19"
],
"is_default": true,
"queue_eta": 260
}
}
}
]