The following endpoint returns the up or down status of a Certificate Authority.
https://{host}:8444/{server.servlet.context-path}/v1/certificate-authorities/{caId}/status
Where:
{host}
is the hostname or IP address of the CA Gateway host server.{server.servlet.context-path}
is the value of theserver.servlet.context-path
parameter in theapplication.yml
configuration file.{caId}
is 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",
}