GET /signingCertificate/details

Use GET to retrieve detailed information about the current Certificate Authority (CA) root certificate in PEM format.

Authentication

Authentication with user name and password is required.

Request URL

GET https://{management_server_IP}/signingCertificate/details

Query parameters

None

Response codes

Code Description Comments
200 OK The request completed successfully.
400 Bad Request A query parameter or request attribute is missing or not valid, or the operation is not supported. A descriptive error message is returned in the response body.
404 Not found A specified resource cannot be found. A descriptive error message is returned in the response body.
500 Internal Server Error An internal error occurred. A descriptive error message is returned in the response body.

Response body

Attributes Type Description
response Array  
  certificate String Certificate in PEM format
  issuerDn String LDAP Distinguished Name of the issuer, for example:
"CN=demo server,OU=CS,O=Com Ltd.,ST=QLD,C=AU"
  notAfter String Date and time that the certificate is no longer valid
The timestamp is returned in ISO 8601 format , for example:
2014-02-05T15:54:13Z
  notBefore String Date and time the certificate becomes valid.
The timestamp is returned in ISO 8601 format, for example:
2014-02-05T15:54:13Z
  serialNumber String Serial number of the certificate
  signatureAlgorithm String Algorithm used to signed the certificate, for example:
"MD5withRSA","SHA256withRSA"
  subjectDn String The LDAP Distinguished Name of the subject, for example:
"CN=demo server,OU=CS,O=Com Ltd.,ST=QLD,C=AU"
result String Results of the request. This can be one of the following values.
  • success. The request completed successfully.
  • failure. The request failed. A descriptive error message was returned.
messages Array Information about one or more messages
  explanation String Additional information to clarify the reason for the message
  id String Information about one or more messages
  recovery Array Recovery information
    text String User actions that can be taken to recover from the event
    URL String Link to the help system for more information, if available
  text String Message text associated with the message identifier
The following example is returned if the request is successful.
{
     "response": {
          "certificate": "-----BEGIN CERTIFICATE-----\n
                          MIID1TCCAr2gAwIBAgIUVihMFvNb6ZdIOd/FmSe7sWsnNj8wDQYJKoZIhvcNAQEL\n
                          BQAweTELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMRAwDgYD\n
                          VQQHEwdSYWxlaWdoMSUwIwYDVQQKExxHZW5lcmF0ZWQgYnkgU2VydmVyIEZpcm13\n
                          YXJlMQkwBwYDVQQLEwAxDTALBgNVBAMTBExYQ0EwIBcNNzAwMTAxMDUwMDAwWhgP\n
                          MjA3MDAxMDEwNDU5NTlaMHkxCzAJBgNVBAYTAlVTMRcwFQYDVQQIEw5Ob3J0aCBD\n
                          YXJvbGluYTEQMA4GA1UEBxMHUmFsZWlnaDElMCMGA1UEChMcR2VuZXJhdGVkIGJ5\n
                          IFNlcnZlciBGaXJtd2FyZTEJMAcGA1UECxMAMQ0wCwYDVQQDEwRMWENBMIIBIjAN\n
                          BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuFx2YjVCCAKa2Sp5QpxdmCS8R8GI\n
                          l/92LyK37HySwKgaTSm9nxkQt2paZUg+NzMqOAbOmTwmVOT8/eGbtWFmWyqeFGr4\n
                          5m+MC3KhxOjrh0zQyRzrbmI0prgW1LSbDwRRon5k4efXhcvfmrNGoXHkGysMLOCZ\n
                          +bRk9XCjm+EFjwaW28pTHE8XfdMJD1zxy467vJQ9AOVNSh7YYflKw1jV73xMYiV9\n
                          tNbAADFCUT5RHicXxgF8huyKcJCHppiH9z6DqE0tgOZfeXqQJHmW5udweVmt646s\n
                          HEGNrCqmntAQcASIzDVfgYKm1dQn+mQAH5FJ/jyjnqjhP7AFIoneXOLYkwIDAQAB\n
                          o1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRuFmtlFkO6WkpgbfSAja3U\n
                          GfwAWTAfBgNVHSMEGDAWgBRuFmtlFkO6WkpgbfSAja3UGfwAWTANBgkqhkiG9w0B\n
                          AQsFAAOCAQEAHa/w2SNQkSpAtoEnHZpDpZrThpNeeQxPMX2+Us2QxOa4Wr8WditB\n
                          9sK89inebkRSZxBTsZNKf4w1XT2TlND5mY88K4rQ15YZdLSJvaKr9QmKSbmBKWeT\n
                          dcOX5HLaB8evP4EoOC32BXvklx+SnNtZHupcXo8JfmC38Hxftpn8ZfiAfiYr4jZI\n
                          iIom6Zupxoc7ZuyAW0ovp4V5jKmglWDM4xXRTDsYcHEOpnGOry+MlPEAszDexYd8\n
                          HNd02BliTsytll6RsSoJ6B9gu49OOcSRYpp543azUDStsoJ8a/8CfyeGMje6aREg\n
                          tOumP61rQlEYyUmEcEr/eDZt8pjXiR/txw==\n
                          -----END CERTIFICATE-----\n",
          "issuerDn": "CN=LXCA,OU=,O=Generated by Server Firmware,L=Raleigh,ST=North Carolina,C=US",
          "notAfter": "2070-01-01T04:59:59Z",
          "notBefore": "1970-01-01T05:00:00Z",
          "serialNumber": "56284c16f35be9974839dfc59927bbb16b27363f",
          "signatureAlgorithm": "SHA256withRSA",
          "subjectDn": "CN=LXCA,OU=,O=Generated by Server Firmware,L=Raleigh,ST=North Carolina,C=US"
     },
     "result": "success",
     "messages": [{
          "explanation": "",
          "id": "FQXHMSE0001I",
          "recovery": {
               "text": "Information only; no action is required.",
               "URL": ""
          },
          "text": "The request completed successfully."
     }]
}