Status
Returns the current status of the flat taking process, Running or Finished.
GET
/flats/status
curl \
--request GET 'http://localhost:1888/v2/api/flats/status'
Response examples (200)
{
"Response": {
"CompletedIterations": 10,
"TotalIterations": 15,
"State": "Running"
},
"Error": "string",
"StatusCode": 200,
"Success": true,
"Type": "API"
}
Response examples (500)
{
"Response": "string",
"Error": "Unknown error",
"StatusCode": 500,
"Success": false,
"Type": "API"
}