Check INUBIT application health

This endpoint is designed to provide status information about the internal server state such as:

  • Application status [OK | ERROR]

  • Maintenance mode [0 | 1]

  • Current time stamp

Regardless of the maintenance mode this endpoint always responds successful.

The response of this endpoint indicates that the Tomcat application server has started and INUBIT application has been loaded successfully. It does not give any indication of possible problems within the INUBIT application.

Request

URL: /healthcheck

Method: GET

Authorization: none

GET /ibis/rest/healthcheck HTTP/1.1
Accept: application/json
Host: localhost:8080
httprequest

Response

HTTP/1.1 200 OK
Content-Tye: application/json

{
  "status":"OK",
  "maintenancemode":0,
  "timestamp":"Thu Jul 29 11:32:03 IST 2021"
}
httprequest

Errors

None