Version 9.8.3 Release Notes

Nuix RESTful Service, Version 9.8.3, released in July 2022.

Nuix Engine

Nuix RESTful Service has been updated to use version 9.8.3 of the Nuix Engine. Details about what is included with this update can be found in the v9.8.3 changelog.

Ability to get ItemSets by GUID

Previously, ItemSets could be retrieved by Name and GUIDs could be retrieved by ItemSet. Now, the ability to get ItemSets based on GUIDs has been added to several endpoints' functionality. The following endpoints have been improved:

Endpoint Enhancement
POST /v2/cases/caseId/itemSets New v2 POST item set creates endpoint that will return full details of the item set, including the GUID in the async function response.
GET /v1/cases/caseId/itemSets GUIDs are returned in all item sets.
GET /cases/{caseId}/itemSets/{itemSetNameOrGuid} GUIDs can be returned in the item set details and are accessible by item set name or GUID.
PUT /cases/{caseId}/itemSets/{itemSetNameOrGuid} Item sets can be renamed by item set name or GUID.
DELETE /cases/{caseId}/itemSets/{itemSetNameOrGuid} Item sets can be deleted by name or GUID.
GET /cases/{caseId}/itemSets/{itemSetNameOrGuid}/duplicates Duplicates can be returned using the item set name or GUID.
GET /cases/{caseId}/itemSets/{itemSetNameOrGuid}/{itemGuid}/duplicates Item set item duplicates can be returned using the name or GUID.
GET /cases/{caseId}/itemSets/{itemSetNameOrGuid}/items Item set items can be returned using the item set name or GUID.
POST /cases/{caseId}/itemSets/{itemSetNameOrGuid}/items Items can be added to an item set using the item set name or GUID.
PATCH /cases/{caseId}/itemSets/{itemSetNameOrGuid}/items Items can be added or deleted in bulk using the item set name or GUID.
GET /cases/{caseId}/itemSets/{itemSetNameOrGuid}/batches Item sets associated with batches can be returned.

Enhancements

  • Performance is now improved for the POST /cases/{caseId}/search when the deduplicate: md5 request parameter is used.