The following endpoint returns property values on certificate authorities.

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

See the table below for a description of each field.

Field

Value

​{host}

The hostname or IP address of the CA Gateway host server

{port}

The port of the CA Gateway service

{server.servlet.context-path}

The value of the servlet.context-path parameter

{caId}

The certificate authority identifier

{properties}

A comma-separated list of the defaultPolicyOIDs, encryptionPolicyOIDs, and verificationPolicyOIDs property identifiers

For example, the following request checks all these properties on the Entrust Certificate Authority 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"
]
}
}
}