Viewing configuration details of a CRL profile by using REST Administration APIs

System administrators view configuration details of a CRL profile by using a REST Administration API.

You can use the Eclipse Amlen REST API GET method to view configuration details of a CRL profile. If the name of the CRL profile is specified in the request, then the configuration details of that object are displayed. If the name of the CRL profile is not specified in the request, then the response includes configuration details of all instances of that object type.

To view configuration details of a CRL profile, use the Eclipse Amlen REST API GET method with the following Eclipse Amlen URI:

http://<admin-endpoint-IP:Port>/ima/v1/configuration/CRLProfile/<CRLProfName>

where:
CRLProfName
Required.
Specifies the name of the CRL profile that you want to view.

The following example shows a GET method to view details of a CRL profile by using cURL:

curl -X GET http://127.0.0.1:9089/ima/v1/configuration/CRLProfile/MyCRLProfile

The following example shows an example response to the GET method used to view details of a CRL profile by using cURL:


{
  "Version": "v1",
  "CRLProfile": {
    "MyCRLProfile": {
      "RevalidateConnection": true,
      "CRLSource": "MyCRLProfile.pem",
      "UpdateInterval": 5,
      "Overwrite": true
    }
  }
}