The following endpoint returns property values on Entrust CAs.

https://{host}:8444/{server.servlet.context-path}/v1/certificate-authorities/{caId}/properties?fields={properties}

Where :

  • {host} is the hostname or IP address of the CA Gateway host server.
  • {server.servlet.context-path} is the value of the server.servlet.context-path parameter in the application.yml configuration file. 
  • {caId} is the Security Manager CA identifier.
  • {properties} is a comma-separated list of the following property identifiers:
    • defaultPolicyOIDs
    • encryptionPolicyOIDs
    • verificationPolicyOIDs

For example, the following request checks all these properties on the Security Manager CA with the CA3 identifier.

GET https://localhost:8444/cagw/v1/certificate-authorities/CA3/status?fields=defaultPolicyOIDs,encryptionPolicyOIDs,verificationPolicyOIDs

The response looks like the following.

{
  "type": "CAPropertiesResponse",
"CAPropertiesInformation": {
    "properties": {
      "defaultPolicyOIDs": [
"1.1.1.1",
"2.2.2.2"
],
"encryptionPolicyOIDs": [
"1.1.1.1"
],
"verificationPolicyOIDs": [
"2.2.2.2"
]
    }
  }
}