veirox report
Manage generated reports
Synopsis
veirox report <subcommand> [args] [flags]
Description
Manage generated reports
Subcommands
| Command | Description |
|---|---|
veirox report create | Create a report |
veirox report info <report-id> | Show report content |
veirox report list | List reports |
veirox report pdf <report-id> | Render the report as PDF |
veirox report rm <report-id> | Delete a report |
veirox report create
Create a report
| Flag | Type | Default | Description |
|---|---|---|---|
--content-html | string | — | html content (inline) |
--content-md | string | — | markdown content (inline) |
--session-id | string | — | bind to session uuid |
--task-id | string | — | bind to task uuid |
--title | string | — | report title |
veirox report create --title 'Q1 Postmortem' --content-md ./postmortem.md
veirox report info <report-id>
Show report content
veirox report info 00000000-0000-4000-8000-000000000001
veirox report list
List reports
| Flag | Type | Default | Description |
|---|---|---|---|
--limit | int | 0 | page size |
--offset | int | 0 | pagination offset |
--session-id | string | — | filter by session uuid |
--task-id | string | — | filter by task uuid |
veirox report list --task-id <uuid>
veirox report pdf <report-id>
Render the report as PDF
veirox report pdf 00000000-0000-4000-8000-000000000001
veirox report rm <report-id>
Delete a report
| Flag | Type | Default | Description |
|---|---|---|---|
--yes | bool | false | confirm deletion |
veirox report rm 00000000-0000-4000-8000-000000000001 --yes
Exit codes
| Code | Meaning |
|---|---|
0 | Success. |
1 | Generic error (network, API 5xx). |
2 | Validation error (bad flag, missing required arg). |
3 | Unauthenticated — run veirox login or set VEIROX_API_KEY. |
4 | Not found (resource does not exist in this project). |
5 | Permission denied (your role / API key lacks the scope). |