List extra certificates

GET /platform/configuration/security/extra_certs

List all of the extra certificates.

Responses

  • The collection of all available extra certificates public chains

    Hide response attribute Show response attribute object
    • certs object Required

      The map of extra certificate ids to their public certificate chains

      Hide certs attribute Show certs attribute object
      • * object Additional properties

        The public portion of the certificate chain that contains the PEM encoded server certificate, intermediate certificates, and the CA certificate. NOTE: The private key, normally included in certificate chains, is omitted.

        Additional properties are allowed.

        Hide * attribute Show * attribute object
        • chain array[string] Required

          The list of PEM encoded X509 certificates that make up the certificate chain

GET /platform/configuration/security/extra_certs
curl \
 -X GET https://{{hostname}}/api/v1/platform/configuration/security/extra_certs
Response examples (200)
{
  "certs": {
    "additionalProperty1": {
      "chain": [
        "string"
      ]
    },
    "additionalProperty2": {
      "chain": [
        "string"
      ]
    }
  }
}