Tagging
This example tags all PDF files in a case with the “pdf” tag and returns the number of items tagged.
less than a minute
Example Scripts
|
|
|
|
|
|
Example Request
curl --location --request PUT 'http://localhost:8080/nuix-restful-service/svc/v1/cases/{caseId}/userScripts' \
--header 'nuix-auth-token: YOUR_AUTH_TOKEN' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data-raw '{
"fileName": "tagItems.rb",
"language": "RUBY",
"async": false
}'
wget --no-check-certificate --quiet \
--method PUT \
--timeout=0 \
--header 'nuix-auth-token: YOUR_AUTH_TOKEN' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--body-data '{
"fileName": "tagItems.rb",
"language": "RUBY",
"async": false
}' \
'http://localhost:8080/nuix-restful-service/svc/v1/cases/{caseId}/userScripts'
Feedback
Was this page helpful?
Thank you for your feedback.
Thank you for your feedback.