REST API  4.0.0
REST API for SafeNet Network HSMs
GET /api/lunasa/hsms/{hsmid}/partitions/{partitionid}/stc/clients

GET /api/lunasa/hsms/{hsmid}/partitions/{partitionid}/stc/clients

Gets all client identities associated with the secure trusted channel for the partition.

Parameters

hsmid

The serial number of the HSM of interest

Use: Required

JSON Schema:

   Object
   type: string

partitionid

The identifier of the partition of interest

Use: Required

JSON Schema:

   Object
   type: string

Responses

200

A list of all client identities associated with the secure trusted channel for partition. The list includes unique identifiers that can be used to get more specific information.

JSON Schema: STC Client Identities

400

Unexpected error

404

HSM or partition does not exist.

Example Request

   GET 
   https://1.2.3.4:8443//api/lunasa/hsms/117290/partitions/273087011507/stc/clients

Example Result

{
    "clients": [
        {
            "clientID": "0",
            "url": "/api/lunasa/hsms/151256/partitions/352170252337/stc/clients/0"
        },
        {
            "clientID": "1",
            "url": "/api/lunasa/hsms/151256/partitions/352170252337/stc/clients/1"
        }
    ]
}

See Also

GET /api/lunasa/hsms/{hsmid}/partitions/{partitionid}/stc/clients/{clientid}