The following endpoint returns the UP or DOWN status of a certificate authority.

https://{host}:{port}/{server.servlet.context-path}/v1/certificate-authorities/{caId}/status

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 server.servlet.context-path configuration parameter

{caId}

The certificate authority identifier

For example, the following request checks the status of a certificate authority with the CA3 identifier.

GET https://localhost:8444/cagw/v1/certificate-authorities/CA3/status

The response looks like the following.

{
"type" : "CAStatusResponse",
"status" : "UP",
}