POST
/
scan
/
multiple-ips
curl --request POST \
  --url https://api.altostrat.io/scans/cve/scan/multiple-ips \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "schedule_id": "d4e5f6a7-b8c9-0123-4567-890abcdef012",
  "site_id": "c3d4e5f6-a7b8-9012-3456-7890abcdef01",
  "ips": [
    "192.168.1.101",
    "192.168.1.105"
  ]
}'
{
  "scan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "scan_site_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "target_ips": [
    "127.0.0.1"
  ],
  "message": "Scan started successfully"
}

Authorizations

Authorization
string
header
required

Authentication token obtained via Altostrat platform login.

Body

application/json

Data required to initiate an immediate scan for a list of IP addresses associated with a specific site and schedule context.

Response

201
application/json

Multiple IP scan initiated successfully.

Response confirming the initiation of a scan for multiple specific IPs.