Lists the registered SSL certificates on your system, as well as relevant certificate info.
Endpoint
POST /certificates/list
Request structure
Not applicable
Response structure
[ { "subjectDn": "string", "issuerDn": "string", "notBefore": "string", "notAfter": "string", "pemEncoded": "string" } ]
Parameter |
Type |
Description |
---|---|---|
subjectDn | String | The Subject Distinguished Name of the certificate. |
issuerDn | String | The Issuer Distinguished Name of the certificate. |
notBefore | String | The start date of the certificate. |
notAfter | String | The expiration date of the certificate. |
pemEncoded | String | The status of the Privacy-Enhanced Mail (PEM) encoding of the certificate. |
Return codes
Status code |
HTTP name |
Description |
---|---|---|
200 | OK |
The request was executed successfully. |
401 | Unauthorized | Access was denied because the credentials are not valid. |
405 | Method Not Allowed | The specified HTTP method is not allowed for administrative data. Resend using POST. |
500 | Internal Server Error | There was an error with the server. |