Ingesting Encrypted Lotes Notes Data
Ingest encrypted Lotus Notes data.
less than a minute
This topic describes the third step needed to ingest encrypted Notes data using Nuix RESTful Service. See the guide’s index for the complete list of steps.
Lotus Notes Ingestion
After you upload a keystore, you can ingest the encrypted HCL Notes file (.nsf).
One way to do this is with the
POST /cases/{caseId}/evidence/file
endpoint. The endpoint takes an optional array of
keystoreKeyParameters
.
These parameters are:
Parameter | Type | Description | |||
---|---|---|---|---|---|
filePassword |
String | The password for the .id file. | |||
target |
String | The path to the .nsf file for decryption. | |||
keystoreName |
String | The name of the .id file to use when decrypting the .nsf file |
The example request for this ingestion is below. Note that keystoreKeyParameters
is an array, which allows
multiple .nsf files to be specified.
curl --location --request POST 'localhost:8080/nuix-restful-service/svc/v1/cases/46cead178c1b42b58f2ac811c03e9a62/evidence/file' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_BEARER_TOKEN' \
--data-raw '{
"processorSettings": {
"storeBinary": true
},
"keystoreKeyParameters":[
{
"filePassword":"THE_PASSWORD_FOR_ASSOCIATED_ID_FILE",
"target":"C:\\Data\\user.nsf",
"keystoreName":"user.id"
}
],
"target": {
"path": "C:\\Data\\user.nsf"
}
}
'
{
"functionKey": "d94932d0-1b78-4191-8a5f-9f9a1f9db795",
"location": "http://localhost:8080/nuix-restful-service/svc/v1/asyncFunctions/d94932d0-1b78-4191-8a5f-9f9a1f9db795"
}
You have now successfully completed the ingestion. Proceed to Encrypted Notes Validation.
Feedback
Was this page helpful?
Thank you for your feedback.
Thank you for your feedback.