Skip to main content

View the Agentless Scan Progress

GET 

/api/v30.00/agentless/progress

x-prisma-cloud-target-env: {"permission":"monitorHosts","saas":true,"self-hosted":true}
x-public: true

Shows the progress of an ongoing scan on hosts or containers for vulnerabilities and compliance.

cURL Request

Refer to the following example cURL command:

$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
“https://<CONSOLE>/api/v<VERSION>/agentless/progress”

cURL Response

Refer to the following example cURL response:

{
"hostname": "",
"id": "",
"scanTime": "2022-11-09T11:10:51.649Z",
"type": "agentlessHost",
"discovery": true,
"total": 5,
"scanned": 2,
"title": "Agentless discovering"
}
]

Request

Responses

Schema
  • Array [
  • discovery boolean

    Specifies whether the scan is in the discovery phase. Values: true | false.

    error string

    Displays an error that occurs during a scan.

    hostname string

    Specifies the hostname for an ongoing scan.

    id string

    Specifies the ID of the entity being scanned.

    scanTime date-time

    Specifies the time when the scan started.

    scanned integer

    Specifies the number of scanned entities.

    title string

    Specifies the progress title (set by the scanning process).

    total integer

    Specifies the total number of regions that should be scanned (Excludes the virtual machines for agentless).

    type shared.ScanType

    Possible values: [image,ciImage,container,host,agentlessHost,registry,serverlessScan,ciServerless,vm,tas,ciTas,cloudDiscovery,serverlessRadar,serverlessAutoDeploy,hostAutoDeploy,codeRepo,ciCodeRepo]

    ScanType represents the scanning type performed

  • ]
Loading...