Part 2: Verifying your Licenses

Verify that Nuix REST has licenses configured.

Before you use endpoints from the Nuix RESTful Service, you must have your licensing properly configured. You can check if your license server has been properly configured by invoking the /v1/licenses endpoint. This endpoint does not require authentication.

curl --location --request GET 'http://localhost:8080/nuix-restful-service/svc/v1/licenses'
[
    {
        "source": null,
        "type": null,
        "location": null,
        "shortname": "enterprise-workstation",
        "count": 10,
        "configuredCount": 10,
        "description": "Nuix eDiscovery Workstation",
        "workers": 10,
        "configuredWorkers": 10,
        "audited": false,
        "auditThreshold": 0,
        "expiry": null,
        "features": null,
        "legalHoldHoldCountLimit": null,
        "concurrentUserLimit": null,
        "canChooseWorkers": true
    }
]