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
15 changes: 14 additions & 1 deletion docs/data-ai/data/export.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,23 @@ This copies the command, including your org ID and the filters you selected, to

Run the copied command in a terminal:

{{< tabs >}}
{{% tab name="Binary data" %}}

```sh {class="command-line" data-prompt="$"}
viam data export binary filter --org-ids=<org-id> --destination=.
```

{{% /tab %}}
{{% tab name="Tabular data" %}}

```sh {class="command-line" data-prompt="$"}
viam data export --org-ids=<org-id> --data-type=<binary|tabular> --mime-types=<mime types> --destination=.
viam data export tabular filter --org-ids=<org-id> --destination=.
```

{{% /tab %}}
{{< /tabs >}}

This command downloads the data onto your computer based on the search criteria you select in the web UI.

By default, the command creates two new directories named `data` and `metadata` in the current directory.
Expand Down
Loading