Maintenance Info
GET/v2/general/maintenance
This endpoint will return information whether Flip currently is on maintenance or not. If there is maintenance on Flip, any request to all Flip API endpoint will return 503 status code
Responses
- 200
- 401
- 503
Expected Response
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
maintenance boolean
{
"maintenance": false
}
Sample response when Your Flip api secret key value for Authorization is missing or invalid
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
name string
message string
status integer
{
"name": "Unauthorized",
"message": "Your request was made with invalid credentials.",
"status": 401
}
Response if Flip is in maintenance
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
name string
message string
status integer
{
"name": "SERVICE_UNAVAILABLE",
"message": "Service or server is under maintenance",
"status": 503
}
Loading...