Get Broker Server Certificate Expiry Status

get

/api/broker/Servers/readServerCerts

Gets certificate expiration dates and warning status for the specified broker servers. The request accepts a comma-separated list of server IDs. Servers that do not respond before the API timeout are omitted from the response.

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : SuccessfulGetOperation
Type: object
The response body for a successful get operation.
Show Source
Nested Schema : type
Type: object
Show Source
Nested Schema : data
Type: array
Show Source
Nested Schema : brokerServersReadServerCerts
Type: object
Show Source
  • A JSON object string that contains certificate expiration dates for the server. Each object key is the certificate file name without the **.crt** extension, and each value is the expiration date.
    Example: {"Host":"2026-06-22","Web":"2026-09-30"}
  • The highest certificate expiration warning state for the server. Allowed values are:
    • 0: No certificate has expired or reached the configured warning period.
    • 1: At least one certificate expires within the configured warning period.
    • 2: At least one certificate has expired.
    Example: 1
  • The warning message for certificates on the server that have expired or expire within the warning period (configured in the CertExpiryWarning global property). Can contain information about multiple certificates. Empty when no certificates require attention.
    Example: Host: cert has expired, Web: cert expires in 14 days
  • The server host FQDN.
    Example: server.com
  • The server ID.
    Example: 1

Default Response

Failed operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : errors
Type: array
The list of errors reported. Validation errors will be keyed by record field.
Show Source
Nested Schema : items
Type: object
An error.
Back to Top