system.getHealth

GET https://relay.bluejeans.com/api/system/health
Check the health of the API server and its service dependencies.
GET /api/system/health HTTP/1.1 HTTP/1.1 200 OK Content-Type: application/json { "amqp": "ok", "db": "ok", "amqp_cluster": "ok", "api": "ok", "grid": "ok", "hostname": "relay-storm-00" }GET /api/system/health HTTP/1.1 HTTP/1.1 503 Service Unavailable Content-Type: application/json { "amqp": "ok", "db": "ok", "amqp_cluster": "hosed", "api": "ok", "grid": "ok", "hostname": "relay-storm-00" }

outputs

An object with an entry for the health of each service. Each service can have a health of ok or hosed. The response status code will be 200 if all services are OK, and 503 otherwise.
application/json Map<String, String>