REST API  4.0.0
REST API for SafeNet Network HSMs
GET /api/lunasa/ntls/clients

GET /api/lunasa/ntls/clients

Gets the list of all clients registered with the appliance.

Parameters

None

Responses

200

List of registered clients

JSON Schema: Clients

400

Unexpected error

Example Request

   GET 
   https://1.2.3.4:8443/api/lunasa/ntls/clients

Example Result

{
    "clients": [
        {
            "clientID": "jseDev",
            "url": "/api/lunasa/ntls/clients/jseDev"
        },
        {
            "clientID": "testClient",
            "url": "/api/lunasa/ntls/clients/testClient"
        },
        {
            "clientID": "testClient2",
            "url": "/api/lunasa/ntls/clients/testClient2"
        },
        {
            "clientID": "testClient3",
            "url": "/api/lunasa/ntls/clients/testClient3"
        }
    ]
}