1
0
mirror of https://github.com/bitwarden/help synced 2025-12-15 15:53:53 +00:00

generic CSV update

This commit is contained in:
Kyle Spearrin
2017-10-03 10:13:47 -04:00
parent b2f6f223f5
commit 9e89aceff1
3 changed files with 20 additions and 18 deletions

View File

@@ -58,16 +58,16 @@ To import your data, log into the web vault at <https://vault.bitwarden.com> and
You can manually condition a [CSV](https://en.wikipedia.org/wiki/Comma-separated_values) file for your individual account import using the generic bitwarden format. Create a UTF-8 encoded plaintext file with the following format:
```
name,uri,username,password,notes,folder,favorite,totp
name,uri,username,password,notes,folder,favorite,totp,fields
```
The above header must be the first line in the file. An example file may look like the following:
```
name,uri,username,password,notes,folder,favorite,totp
Twitter,https://twitter.com,hello@bitwarden.com,password123,,Social,1,
EVGA,https://www.evga.com/support/login.asp,hello@bitwarden.com,fakepassword,,,,TOTPSEED123
My Bank,https://www.wellsfargo.com/home.jhtml,john.smith,password123,Bank PIN is 1234,,,
name,uri,username,password,notes,folder,favorite,totp,fields
Twitter,https://twitter.com,hello@bitwarden.com,password123,,Social,1,,
EVGA,https://www.evga.com/support/login.asp,hello@bitwarden.com,fakepassword,,,,TOTPSEED123,
My Bank,https://www.wellsfargo.com/home.jhtml,john.smith,password123,Bank PIN is 1234,,,,"PIN: 1234"
```
[{% icon fa-download %} Download example](/files/bitwarden_export.csv)
@@ -79,16 +79,16 @@ When importing from this format, select the **bitwarden (csv)** file format opti
You can manually condition a [CSV](https://en.wikipedia.org/wiki/Comma-separated_values) file for your organization account import using the generic bitwarden format. The format is almost the same as the individual account format above, however, organizations have "collections" instead of a "folder" and no "favorite". Create a UTF-8 encoded plaintext file with the following format:
```
name,uri,username,password,notes,collections,totp
name,uri,username,password,notes,collections,totp,fields
```
The above header must be the first line in the file. An example file may look like the following:
```
name,uri,username,password,notes,collections,totp
Twitter,https://twitter.com,hello@bitwarden.com,password123,,"Social,Marketing",
EVGA,https://www.evga.com/support/login.asp,hello@bitwarden.com,fakepassword,,,TOTPSEED123
Bank,https://www.wellsfargo.com/home.jhtml,john.smith,password123,Bank PIN is 1234,"Finance",
name,uri,username,password,notes,collections,totp,fields
Twitter,https://twitter.com,hello@bitwarden.com,password123,,"Social,Marketing",,
EVGA,https://www.evga.com/support/login.asp,hello@bitwarden.com,fakepassword,,,TOTPSEED123,
Bank,https://www.wellsfargo.com/home.jhtml,john.smith,password123,Bank PIN is 1234,"Finance",,"PIN: 1234"
```
[{% icon fa-download %} Download example](/files/bitwarden_export_org.csv)