Skip to content

Network Scan Scan Run Reports

Operations for the Network Scan Scan Run Reports service collection.

LanguageLast Update
Pythonv1.6.5
PowerShell
Gov0.22.0
TypeScriptv0.6.0
Rust
Rubyv1.4.0


OperationDescription
get-scan-run-reports
get_scan_run_reports
Downloads scan run report in CSV format

Downloads scan run report in CSV format

Method GET
Route /netscan/entities/scan-run-reports/v1
Scope Network scanning: READ
PEP 8 get_scan_run_reports
id query · string
Scan run ID for which report is to be fetched
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import NetworkScanScanRunReports
falcon = NetworkScanScanRunReports(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.get_scan_run_reports(id="string")
print(response)
{
"errors": [
{
"code": 0,
"id": "string",
"message": "string"
}
],
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total": 0
},
"powered_by": "string",
"query_time": 0.0,
"trace_id": "string",
"writes": {
"resources_affected": 0
}
}
}