Summary
Get status.
Description
Get status of current IAP.
Route
GET /status
Roles
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
status |
object |
status of the current IAP. |
Copied to Clipboard
{
"statusCode": 500,
"success": true,
"host": "sed exercitation anim",
"serverId": "voluptate nulla sit incididunt",
"serverName": "magna",
"services": [
{
"service": "ut mollit exercitation consequat reprehenderit",
"status": "in ex tempor ut reprehenderit",
"available": false
},
{
"service": "ipsum ea",
"status": "ipsum",
"available": true
}
],
"time": "et nisi"
}
Copied to Clipboard
{
"title": "status",
"type": "object",
"properties": {
"statusCode": {
"type": "integer",
"examples": [
200,
500
]
},
"success": {
"type": "boolean"
},
"host": {
"type": "string"
},
"serverId": {
"type": "string"
},
"serverName": {
"type": "string"
},
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"service": {
"type": "string"
},
"status": {
"type": "string"
},
"available": {
"type": "boolean"
}
}
}
},
"time": {
"type": "string"
}
}
}