This API is used to stop a running computation process. The Request_Id provided as part of the “Compute/Run” response is POST as the following JSON to this API to stop the execution:
1 2 3 |
{ "id":"<request_id>" } |
1 2 3 |
{ "id": "abcd1234" } |
1 2 3 4 |
{ "status": "success", "id": "<request_id>", } |
1 2 3 4 5 |
{ "status": "error", "id": "<request_id>", "msg": "<error message>" } |