Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
GET https://localhost/operations/12356

HTTP/1.1 200 OK

{
  "operationType": "rebalance",
  "startTime": 1287364876,
  "endTime": 232353232,
  "status": "successful"
}

Status of successful responses will be kept around for a set period of time, after that, the record will be deleted. and a response of 404 will be returned back to the user.


To cancel a request:

Code Block
DELETE https://localhost/operations/12356

HTTP/1.1 200 OK

{ 
  "operationType": "rebalance",
  "startTime": 1287364876,
  "endTime": 232353232,
  "status": "cancelled"
}

...