Case Creation
Create a case.
less than a minute
This topic describes the first step needed to ingest encrypted Notes data using Nuix RESTful Service. See the guide’s index for the complete list of steps.
Create a Case
Before you can ingest any data into REST, you must create a case. This can be done with the
POST /v1/cases
endpoint or the POST /v2/cases
endpoint.
curl --location --request POST 'http://localhost:8080/nuix-restful-service/svc/v1/cases' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_BEARER_TOKEN' \
--data-raw '{
"name":"LotusNotesTest",
"location":"inventory0",
"description":"About My simple Case",
"compound":false,
"investigator":"Inspector Gadget"
}'
{
"caseId": "46cead178c1b42b58f2ac811c03e9a62",
"name": "LotusNotesTest",
"path": "C:\\Cases\\LotusNotesTest",
"description": "About My simple Case",
"investigator": "Inspector Gadget",
"creationDate": 1662658382198,
"compound": false,
"elastic": false,
"binaryStoreLocation": "",
"indexId": "",
"caseSize": 0,
"casePathParent": "C:\\Cases",
"caseInvestigationTimeZone": "UTC",
"hasExclusions": null,
"hasNuixSystemTags": null,
"hasProductionSets": null,
"hasCalculatedAuditSize": null,
"caseInvestigator": "Inspector Gadget",
"caseCreationDate": 1662658382198,
"caseName": "LotusNotesTest",
"caseDescription": "About My simple Case",
"casePath": "C:\\LotusNotesTest"
}
You have now successfully created a case. Proceed to Keystore Upload for the next step.
Feedback
Was this page helpful?
Thank you for your feedback.
Thank you for your feedback.