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": false,
"host": "mollit elit proident",
"serverId": "adipisicing et sed",
"serverName": "cillum ut id sint mollit",
"services": [
{
"service": "est tempor",
"status": "nisi",
"available": true
},
{
"service": "nisi ipsum labore nulla consequat",
"status": "tempor ad",
"available": false
},
{
"service": "consequat",
"status": "id adipisicing ad commodo proident",
"available": true
}
],
"time": "non quis aute minim culpa"
}
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"
}
}
}