InfoResource Resource

Resource for access to general info about the system, which are available without a valid session.

GET /info/maintenance

Get info about the maintenance mode

Response Body
media type data type description
application/json MaintenanceResponse (JSON) info about maintenance mode

Example

Request
GET /info/maintenance
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "maintenance" : true,
  "banner" : true,
  "message" : "...",
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}