Keystore Upload

Upload a keystore.

Upload a Keystore

Before you ingest encrypted HCL Notes files, you must upload the associated .id file to REST using the POST /cases/{caseId}/keyStores endpoint. This endpoint copies the keystore file to your case directory in a keystores subdirectory.

Using the case you created in the previous example, if your inventoryLocation is set to C:\\Cases and you upload the user.id file, then the keystore file will be copied to location C:\Cases\LotusNotesTest\keystores\user.id.

curl --location --request POST 'http://localhost:8080/nuix-restful-service/svc/v1/cases/46cead178c1b42b58f2ac811c03e9a62/keyStores' \
--header 'Authorization: Bearer YOUR_BEARER_TOKEN' \
--form 'keystoreFile=@"/Files/user.id"'
{
  "success": true
}

You have successfully uploaded the keystore. Proceed to Ingesting Notes Data.