Vault Import and Export
Provides a convenient way to import other password managers' data into the vault and export vault data out.
Importing Vault Data
try {
const vaultId = /* Id of the vault to add the data to */
const file = /* the vault data to upload */
const items = await transformData('firefox', file)
const result = await client.addBatchItems(vaultId, items)
} catch {
// Handle/notify user of errors
}Supported Vault Imports
Exporting Vault Data
Last updated