Sazabi
CLI

sazabi artifacts

Command reference for sazabi artifacts.

sazabi artifacts — Retrieve artifacts produced in a thread. Subcommands: list, get.

sazabi artifacts

Retrieve artifacts produced in a thread

sazabi artifacts <subcommand>
sazabi artifacts list --thread-id <thread-id>  # List artifacts in a thread
sazabi artifacts get <artifact-id> --thread-id <thread-id>  # Get one artifact's data

sazabi artifacts list

List artifacts produced in a thread

sazabi artifacts list [options]
FlagTypeRequiredDescription
--tokenstringNoOverride authentication token
--thread-idstringNoThread to list artifacts for (required)
--jsonbooleanNoOutput as JSON
--api-base-urlstringNoOverride API base URL
sazabi artifacts list --thread-id <thread-id>  # List artifacts in a thread
sazabi artifacts list --thread-id <thread-id> --json  # Output as JSON

sazabi artifacts get

Get a single artifact's data

sazabi artifacts get <artifact-id> [options]
FlagTypeRequiredDescription
--tokenstringNoOverride authentication token
--thread-idstringNoThread the artifact belongs to (required)
--formatstringNoOutput format for non-JSON mode: json (default) or csv
--jsonbooleanNoOutput as JSON
--api-base-urlstringNoOverride API base URL
sazabi artifacts get <artifact-id> --thread-id <thread-id>  # Print artifact data
sazabi artifacts get <artifact-id> --thread-id <thread-id> --format csv  # Render table/timeseries as CSV
sazabi artifacts get <artifact-id> --thread-id <thread-id> --json  # Output as JSON