Scanner
Change Scan Priority
Modify the priority of a private scan with id in the processing queue by shifting it shift positions.
ℹ️ This adjustment applies only to scans with the Pending status. Scans that are already scheduled or in progress will not be affected.
post/api/scanner/change_priority/
Request body
Example request
{
"id": 123,
"shift": -2
}Response
Priority Changed
Example response
[
{
"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",
"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
}
}
]