Skip to content

PKI Get Applications REST API

ckelleyRH edited this page Jun 7, 2021 · 9 revisions

Overview

PKI Get Applications operation will return a list of PKI subsystems currently deployed on the instance.

Request

  • URL: /pki/rest/apps

  • Method: GET

  • Authentication: Not required

  • Content: None

Example

$ curl -k -H "Accept: application/json" --user caadmin:Secret.123 -s https://localhost.localdomain:8443/pki/rest/apps | python -m json.tool
[
    {
        "id": "ca",
        "name": "Certificate Authority",
        "path": "/ca"
    }
]
Clone this wiki locally