REST API  4.0.0
REST API for SafeNet Network HSMs
GET /api/lunasa/hsms/{hsmid}/counter/actions

GET /api/lunasa/hsms/{hsmid}/counter/actions

Gets all actions that an administrator can perform on the counter of the HSM.

Parameters

hsmid

The serial number of the HSM of interest

Use: Required

JSON Schema:

   Object
   type: string

Responses

200

A list of all actions associated with the counter of the HSM. The list includes unique identifiers that can be used to perform the specific action with a POST.

JSON Schema: HSM HSMId Actions

400

Unexpected error

404

HSM does not exist.

Example Request

   GET 
   https://1.2.3.4:8443/api/lunasa/hsms/117290/counter/actions

Example Result

{
    "actions": [
        {
            "id": "monitor",
            "url": "/api/lunasa/hsms/117290/counter/actions/monitor"
        },
    ]
}

See Also

POST /api/lunasa/hsms/{hsmid}/actions/{actionid}