REST API  16
REST API for Luna Network HSMs
GET /api/lunasa/ntls/clientCA

GET /api/lunasa/ntls/clientCA

This resource will provide the list of all CAs available in the truststore.

Parameters

None

Responses

200

List of all CAs available in the truststore.

JSON Schema: Certificate Authorities

400

Unexpected error

Example Request

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

Example Result

{
    "certificateAuthorities": [
        {
            "id": "rootca",
            "url": "/api/lunasa/ntls/clientCA/rootca"
        },
        {
            "id": "testca",
            "url": "/api/lunasa/ntls/clientCA/testca"
        }
    ]
}

See Also

GET /api/lunasa/ntls/clientCA/{CAid}
POST /api/lunasa/ntls/clientCA
DELETE /api/lunasa/ntls/clientCA/{CAid}