* tip - export format when uploading to a new account * update on premise - cron example * note on failed pin attempts * strike email requirement for self-host licensing * FAQ item on changing sp entity id, acs, callback path, etc. * tips on --apikey for CLI in SSO required organizations * issue 804
8.3 KiB
layout, title, categories, featured, popular, tags, order, description
| layout | title | categories | featured | popular | tags | order | description | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| article | Export Vault Data |
|
false | false |
|
08 | This article explains how to export your personal Vault data from any client application, or export an Organization Vault from the Web Vault or CLI. |
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.
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.
Vault Exports will not include file attachments or Items in the Trash.
{% callout warning %} Unless you're using an Encrypted Export, 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:
{% callout warning %} Exporting data from your Personal Vault will not export any data from Organizations that you belong to. To export Organization Data, follow the instructions to export an Organization Vault. {% endcallout %}
Export from the Web Vault
To export your personal Vault data from the Web Vault:
-
Select Tools from the top navigation bar.
-
Select Export Vault from the left-hand Tools menu.
-
On the Vault Export page, choose a File Format (
.json,.csv, or.json (Encrypted)).{% callout success %}If you need to import this data into a new Bitwarden account, choose the regular
.jsonformat (not.json (Encrypted)).{% endcallout %} -
Enter your Master Password and select the Export Vault button.
{% endcapture %} {{ web_vault | markdownify}}
Export from a Browser Extension
To export your personal Vault data from a Browser Extension:
-
Open the {% icon fa-cogs %} Settings tab.
-
Scroll down to the Tools section and select the Export Vault option.
-
On the Export Vault view, choose a File Format (
.json,.csv, or.json (Encrypted)).{% callout success %}If you need to import this data into a new Bitwarden account, choose the regular
.jsonformat (not.json (Encrypted)).{% endcallout %} -
Enter your Master Password and select Submit.
{% callout info %} If you're exporting from the Vivaldi Browser Extension, you may need to popout the Browser Extension for export to work properly:
{% image importing/browserextension-popout.png Popout a Browser Extension %} {% endcallout %}
{% endcapture %} {{ browser_extension | markdownify}}
Export from Desktop
To export your personal Vault data from a Desktop app:
-
From the menu bar, navigate to File → Export Vault.
-
In the Export Vault window, choose a File Format (
.json,.csv, or.json (Encryped)).{% callout success %}If you need to import this data into a new Bitwarden account, choose the regular
.jsonformat (not.json (Encrypted)).{% endcallout %} -
Enter your Master Password and select the {% icon fa-download %} Download button.
{% endcapture %} {{ desktop_info | markdownify}}
Export from Mobile
To export your personal Vault data from a Mobile app:
-
Tap the {% icon fa-cogs %} Settings tab.
-
Scroll down to the Tools section and tap the Export Vault option.
-
On the Export Vault view, choose a File Format (
.json,.csv, or.json (Encrypted)).{% callout success %}If you need to import this data into a new Bitwarden account, choose the regular
.jsonformat (not.json (Encrypted)).{% endcallout %} -
Enter your Master Password and tap the Export Vault button.
{% endcapture %} {{ mobile_info | markdownify}}
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.
{% endcapture %} {{ cli_info | markdownify}}
Export an Organization Vault
Organization Admins and Owners can export their Organization Vault (i.e. all items owned by the Organization) from the Web Vault or CLI:
Export Org from the Web Vault
To export your Organization Vault data from the Web Vault:
-
Open your Organization and select the Tools tab:
{% image organizations/org-export.png Export Organization Vault %}
-
Select Export Vault from the left-hand Tools menu.
-
On the Vault Export page, choose a File Format (
.json,.csv, or.json (Encrypted)). -
Enter your Master Password and select the Export Vault button.
{% endcapture %} {{ org_web_vault | markdownify}}
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.
{% endcapture %} {{ org_cli_info | markdownify}}