Part 1: Verifying your Installation

Verify that Nuix REST is installed correctly and running.

Before you begin the other parts of the tutorial, it is a good idea to verify your installation and make sure Nuix REST is up and running. You can easily do this by using the /v2/about endpoint.

To verify Nuix RESTful Service is up and running:

curl --location --request GET 'http://localhost:8080/nuix-restful-service/svc/v2/about'
{
    "server": "http://localhost:8080",
    "serverId": "nuix-restful-server-1",
    "startupTime": null,
    "nuixRestfulVersion": null,
    "engineVersion": null
}

The unauthenticated version of this endpoint will only return the server and serverId fields. All other fields will be null and require an authentication token to view them.