From d0a052e18cb1953c4808ef86dc3f5b25af2d66bb Mon Sep 17 00:00:00 2001 From: Trey Greer <61418192+tgreer-bw@users.noreply.github.com> Date: Thu, 1 Jul 2021 09:14:58 -0400 Subject: [PATCH] add reprompt field to file structure (#656) --- .../importing/condition-bitwarden-import.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/_articles/importing/condition-bitwarden-import.md b/_articles/importing/condition-bitwarden-import.md index dae59272..a511aee2 100644 --- a/_articles/importing/condition-bitwarden-import.md +++ b/_articles/importing/condition-bitwarden-import.md @@ -23,12 +23,12 @@ Bitwarden `.csv` files will only handle Logins and Secure Notes. If you need to Create a UTF-8 encoded plaintext file with the following header as the first line in the file: ``` -folder,favorite,type,name,notes,fields,login_uri,login_username,login_password,login_totp +folder,favorite,type,name,notes,fields,reprompt,login_uri,login_username,login_password,login_totp ``` For example: ``` -folder,favorite,type,name,notes,fields,login_uri,login_username,login_password,login_totp -Social,1,login,Twitter,,,twitter.com,me@example.com,password123, +folder,favorite,type,name,notes,fields,reprompt,login_uri,login_username,login_password,login_totp +Social,1,login,Twitter,,,0,twitter.com,me@example.com,password123, ,,login,EVGA,,,https://www.evga.com/support/login.asp,hello@bitwarden.com,fakepassword,TOTPSEED123 ,,login,My Bank,Bank PIN is 1234,"PIN: 1234",https://www.wellsfargo.com/home.jhtml,john.smith,password123456, ,,note,My Note,"This is a secure note.",,,,, @@ -43,13 +43,13 @@ When importing this file, select **Bitwarden (csv)** as your file format. Create a UTF-8 encoded plaintext file with the following header as the first line in the file: ``` -collections,type,name,notes,fields,login_uri,login_username,login_password,login_totp +collections,type,name,notes,fields,reprompt,login_uri,login_username,login_password,login_totp ``` For example, ``` -collections,type,name,notes,fields,login_uri,login_username,login_password,login_totp -"Social,Marketing",login,Twitter,,,twitter.com,me@example.com,password123, -"Finance",login,My Bank,Bank PIN is 1234,"PIN: 1234",https://www.wellsfargo.com/home.jhtml,john.smith,password123456, +collections,type,name,notes,fields,reprompt,login_uri,login_username,login_password,login_totp +"Social,Marketing",login,Twitter,,,0,twitter.com,me@example.com,password123, +"Finance",login,My Bank,Bank PIN is 1234,"PIN: 1234",0,https://www.wellsfargo.com/home.jhtml,john.smith,password123456, ,login,EVGA,,,https://www.evga.com/support/login.asp,hello@bitwarden.com,fakepassword,TOTPSEED123 ,note,My Note,"This is a secure note.",,,,, ``` @@ -62,7 +62,7 @@ When importing this file, select **Bitwarden (csv)** as your file format. You may not have data for all the values shown in the above formats, however most are optional. In order for the Bitwarden `.csv` importer to function properly, you are only required to have the following values for any given object: ``` -folder,favorite,type,name,notes,fields,login_uri,login_username,login_password,login_totp +folder,favorite,type,name,notes,fields,reprompt,login_uri,login_username,login_password,login_totp ,,login,Login Name,,,,,, ,,note,Secure Note Name,,,,,, ``` @@ -88,6 +88,7 @@ Create a UTF-8 encoded plaintext file in the following format: "organizationId": null, "folderId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "type": 1, + "reprompt": 0, "name": "My Gmail Login", "notes": "This is my gmail login for import.", "favorite": false, @@ -142,6 +143,7 @@ Create a UTF-8 encoded plaintext file in the following format: "organizationId": "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy", "folderId": "zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz", "type": 1, + "reprompt": 1, "name": "Our Shared Login", "notes": "A login for sharing", "favorite": false,