Skip to main content

GET /certificateRevocationList/{CRL_id}

Use this method to download a specific certificate revocation list (CRL).

Authentication

Authentication with username and password is required.

Request URL

GET https://{management_server_IP}/certificateRevocationList/{CRL_id}

where {CRL_id} is the distinguished name of the CRL issuer to be retrieved. To obtain the Distinguished Name, use the GET /certificateRevocationList method.

Query parameters

None

Request body

None

Response codes

CodeDescriptionComments
200OKThe request completed successfully.
404Not foundA specified resource cannot be found. A descriptive error message is returned in the response body.
500Internal Server ErrorAn internal error occurred. A descriptive error message is returned in the response body.

Response body

AttributesTypeDescription
responseArray 
 crlStringContents of the CRL file in PEM format
 issuerDnStringLDAP Distinguished Name of the issuer(for example "CN=demo server,OU=CS,O=Com Ltd.,ST=QLD,C=AU")
 next_updateStringDate and time for the next update. The timestamp is returned in ISO 8601 format (for example 2014-02-05T15:54:13Z)
 signatureAlgorithmStringAlgorithm used to sign the CRL (for example "MD5withRSA")
 typeStringCRL type (for example "X.509")
 updateStringDate and time for this update. The timestamp is returned in ISO 8601 format(for example 2014-02-05T15:54:13Z).
 versionIntegerCRL version
resultStringResults 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.
messagesArrayInformation about one or more messages
 idStringMessage identifier of a returned message
 explanationStringAdditional information to clarify the reason for the message
 recoveryArrayRecovery information
  textStringUser actions that can be taken to recover from the event
  URLStringLink to the help system for more information, if available
 textStringMessage text associated with the message identifier
The following example is returned if the request is successful.
{
"response": [{
"crl": "-----BEGIN X509 CRL-----\r\n
MIIBODCB4zANBgkqhkiG9w0BAQQFADBgMQswCQYDVQQGEwJBVTEMMAoGA1UECBMD\r\n
UUxEMRkwFwYDVQQKExBNaW5jb20gUHR5LiBMdGQuMQswCQYDVQQLEwJDUzEbMBkG\r\n
A1UEAxMSU1NMZWF5IGRlbW8gc2VydmVyFw0wMTAxMTUxNjI2NTdaFw0wMTAyMTQx\r\n
NjI2NTdaMFIwEgIBARcNOTUxMDA5MjMzMjA1WjASAgEDFw05NTEyMDEwMTAwMDBa\r\n
MBMCAhI0Fw0wMTAxMTUxNjE5NDdaMBMCAhI1Fw0wMTAxMTUxNjIzNDZaMA0GCSqG\r\n
SIb3DQEBBAUAA0EAHPjQ3M93QOj8Ufi+jZM7Y78TfAzG4jJn/E6MYBPFVQFYo/Gp\r\n
UZexfjSVo5CIyySOtYscz8oO7avwBxTiMpDEQg==\r\n
-----END X509 CRL-----\r\n",
"issuerDn": "CN=SSLeay demo server,OU=CS,O=Mincom Pty. Ltd.,ST=QLD,C=AU",
"next_update": "2001-02-14T16:26:57Z",
"signatureAlgorithm": "MD5withRSA",
"type": "X.509",
"update": "2001-01-15T16:26:57Z",
"version": 1
}],
"result": "success",
"messages": [{
"id": "FQXHMSE0001I",
"explanation": "",
"recovery": {
"text": "Information only; no action is required.",
"URL": ""
},
"text": "The request completed successfully."
}]
}