export_network_report
Create an HTML or CSV report from the UniFi network snapshot, saving it locally after confirmation.
Instructions
Export an HTML or CSV report rendered from the portable snapshot model.
Mutating operation: writes a local report file immediately, persisted in the export directory. The call is rejected without writing unless confirm=true. Format must be "html" or "csv" and filename must end with the matching extension; plugins may register additional formats. Prefer export_portable_snapshot for the raw machine-readable model.
Args: filename: Output report file name inside the confined export directory; must end with the chosen format extension (e.g. .html, .csv). format: Report renderer to use — "html" or "csv" (plugins may register additional formats). confirm: Safety confirmation. Must be True to actually write; otherwise returns a rejection message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | Yes | Report renderer to use — "html" or "csv" (plugins may register additional formats). | |
| confirm | No | Safety confirmation. Must be True to actually write; otherwise returns a rejection message. | |
| filename | Yes | Output report file name inside the confined export directory; must end with the chosen format extension (e.g. .html, .csv). |