Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions docs/sdk/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Invoke it directly using [uv](https://docs.astral.sh/uv/) (recommended):
uvx flareio-cli --help

# Running a specific version. Recommended to ensure stability.
# Example: uvx flareio-cli@0.5.0 --help
# Example: uvx flareio-cli@0.8.0 --help
uvx flareio-cli@version --help
```

Expand Down Expand Up @@ -57,11 +57,9 @@ uvx flareio-cli help

You may export a tenant's events to a CSV using the `export-tenant-feed` command:
- The output will be written to `output.csv`.
- The `cursor.txt` file can be used to resume the export from the last place it stopped.

```bash
uvx flareio-cli export-tenant-feed \
--cursor-file=cursor.txt \
--output-file=output.csv \
--from-date=2025-01-01
```
Expand All @@ -70,24 +68,20 @@ uvx flareio-cli export-tenant-feed \

You may export a tenant's credentials to a CSV using the `export-tenant-credentials` command:
- The output will be written to `output.csv`.
- The `cursor.txt` file can be used to resume the export from the last place it stopped.

```bash
uvx flareio-cli export-tenant-credentials \
--cursor-file=cursor.txt \
--output-file=output.csv
```

### Exporting Identifier Credentials

You may export an identifier's credentials to a CSV using the `export-identifier-credentials` command:
- The output will be written to `output.csv`.
- The `cursor.txt` file can be used to resume the export from the last place it stopped.

```bash
uvx flareio-cli export-identifier-credentials \
--identifier-id=123 \
--cursor-file=cursor.txt \
--output-file=output.csv
```

Expand Down