Importing Roboform Identies into Bitwarden

Note: Your question may already be answered in the Bitwarden Help Center.

Just a reminder - All Enterprise, Teams, Families, and Premium subscribers receive priority support at Get in Touch | Bitwarden :partying_face:

I have imported my Roboform logins.

But how to import my Roboform Identities? :thinking:

Many thanks for all suggestions!

Hello @JohnSmythe
I am unsure what options you have to export from Roboform but I do see the .csv is supported for import by Bitwarden.
From what I can tell Bitwarden does not currently support importing or exporting identities from a .csv but does support this for .json files. You can see more about that here

If you would like, I have created this example below.

{
  "encrypted": false,
  "folders": [],
  "items": [
    {
      "id": null,
      "organizationId": null,
      "folderId": null,
      "type": 4,
      "reprompt": 0,
      "name": "Test Identity",
      "notes": null,
      "favorite": false,
      "identity": {
        "title": null,
        "firstName": null,
        "middleName": null,
        "lastName": null,
        "address1": null,
        "address2": null,
        "address3": null,
        "city": null,
        "state": null,
        "postalCode": null,
        "country": null,
        "company": null,
        "email": null,
        "phone": null,
        "ssn": null,
        "username": null,
        "passportNumber": null,
        "licenseNumber": null
      },
      "collectionIds": null
    },
{
  "items": [
  {
    "type": 4,
    "name": "Test Identity2",
    "identity": {}                     
  }
  ]
}

As mentioned in the support article linked, majority of fields are not required but these are the current options available.
Below are the required fields for an identity.

{
  "items": [
  {
    "type": 4,
    "name": "Identity Item's Name",
    "identity": {}                     
  }
  ]
}

Option 2

If you do not have many entries or the thought of creating this .json file is jarring you can optionally just create the identities individually through your vault view.

2 Likes