1
0
mirror of https://github.com/bitwarden/help synced 2025-12-31 07:33:36 +00:00
Files
help/_articles/account/export-your-data.md
fred_the_tech_writer 535ea72847 Release Updates (#474)
* Send Staging (#447)

* - js for in-page tabs
- send category early drafts of articles
- send images

* fix scrolling on tab

* send web vault

* mobile image

* redone 'receive send' article

* send from browser ext & mobile

* send work

* improvements to 'about'

* send additions

* so much send

* lotsa send

* all send all the time

* ain't nothin but a send thang

* cli

* send cli

* simple cli sends in /create-send/

* simple disable & delete in /send-lifespan/

* send desktop screenshots

* send final cleanup

* cli final cleanup

* send edits

* fix

* send final touches

* fixed links & non-send updates

* new import message documentation, several import articles condensed to use tabs, U2F support for Edge, excluded domains article, remove in innacurate note on emergency accesss

* Firefox Attachment Workflow + Date Picker for custom timestamps

* safari attach file Send req

* excluded domains addition

* fix tab titles

* release notes

* unlock articles

* link to status feed

* small typos

* test

* updated release notes

* lastpass article form fill rewrites

* import to org & personal clarifications

* send self-hosting, safari web extension edits, and release notes
2021-03-11 11:58:16 -05:00

7.1 KiB

layout, title, categories, featured, popular, tags, order
layout title categories featured popular tags order
article Export Vault Data
import-export
false false
export
accounts
csv
06

You can export your personal Vault data from any client application, or export an Organization Vault from the Web Vault or CLI. Exports can be downloaded as plaintext .json or .csv files, or as a .json [encrypted export]({% link _articles/importing/encrypted-export.md %}).

We recommend using .json for a more complete export, as .csv files won't currently export Cards or Identities. For complete information on the format of Bitwarden .csv and .json files, see [Condition a Bitwarden .csv or .json]({% link _articles/importing/condition-bitwarden-import.md %}).

Vault Exports will not include [file attachments]({% link _articles/features/attachments.md %}) or Items in the Trash.

{% callout warning %} Unless you're using an [Encrypted Export]({% link _articles/importing/encrypted-export.md %}), do not store or send the exported file over insecure channels, like email, and delete the file immediately after use. {% endcallout %}

Export a Personal Vault

Export your personal Vault data from any client application:

{% capture web_vault %}

Export from the Web Vault

To export your personal Vault data from the Web Vault:

  1. Select Tools from the top navigation bar.
  2. Select Export Vault from the left-hand Tools menu.
  3. On the Vault Export page, choose a File Format (.json, .csv, or .json (Encrypted)).
  4. Enter your Master Password and select the Export Vault button.

{% endcapture %} {{ web_vault | markdownify}}

{% capture browser_extension %}

Export from a Browser Extension

To export your personal Vault data from a Browser Extension:

  1. Open the {% icon fa-cogs %} Settings tab.
  2. Scroll down to the Tools section and select the Export Vault option.
  3. On the Export Vault view, choose a File Format (.json, .csv, or .json (Encrypted)).
  4. Enter your Master Password and select Submit.

{% endcapture %} {{ browser_extension | markdownify}}

{% capture desktop_info %}

Export from Desktop

To export your personal Vault data from a Desktop app:

  1. From the menu bar, navigate to FileExport Vault.
  2. In the Export Vault window, choose a File Format (.json, .csv, or .json (Encryped)).
  3. Enter your Master Password and select the {% icon fa-download %} Download button.

{% endcapture %} {{ desktop_info | markdownify}}

{% capture mobile_info %}

Export from Mobile

To export your personal Vault data from a Mobile app:

  1. Tap the {% icon fa-cogs %} Settings tab.
  2. Scroll down to the Tools section and tap the Export Vault option.
  3. On the Export Vault view, choose a File Format (.json, .csv, or .json (Encrypted)).
  4. Enter your Master Password and tap the Export Vault button.

{% endcapture %} {{ mobile_info | markdownify}}

{% capture cli_info %}

Export from the CLI

To export your personal Vault from the CLI, use the export command. By default, export will export your Vault as a .csv and save the file to the working directory, however this behavior can be altered using options:

bw export my-master-password --output /users/me/documents/ --format json

For more detail, see our [CLI documentation]({% link _articles/miscellaneous/cli.md %}).

{% endcapture %} {{ cli_info | markdownify}}

Export an Organization Vault

Organization [Admins and Owners]({% link _articles/organizations/user-types-access-control.md %}) can export their Organization Vault (i.e. all items [shared in Collections]({% link _articles/organizations/share-to-a-collection.md %})) from the Web Vault or CLI:

{% capture org_web_vault %}

Export Org from the Web Vault

To export your Organization Vault data from the Web Vault:

  1. Open your Organization and select the Tools tab:

    {% image organizations/org-export.png Export Organization Vault %}

  2. Select Export Vault from the left-hand Tools menu.

  3. On the Vault Export page, choose a File Format (.json, .csv, or .json (Encrypted)).

  4. Enter your Master Password and select the Export Vault button.

{% endcapture %} {{ org_web_vault | markdownify}}

{% capture org_cli_info %}

Export Org from the CLI

To export your Organization Vault from the CLI, use the export command with the --organizationid option.

By default, export will export your Vault as a .csv and save the file to the working directory, however this behavior can be altered using options:

bw export my-master-password --organizationid 7063feab-4b10-472e-b64c-785e2b870b92 --output /users/me/documents/ --format json

{% callout success %} If you don't know your organizationid value off-hand, you can access it at the command-line using bw list organizations. {% endcallout %}

For more detail, see our [CLI documentation]({% link _articles/miscellaneous/cli.md %}).

{% endcapture %} {{ org_cli_info | markdownify}}