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-pathparameter in the- application.ymlconfiguration file.
- {caId}is the Entrust Certificate Authority 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 Entrust Certificate Authority instance 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"      ]    }  }}