* @return Boolean. true on task status changed to undone. False otherwise
*/
public Boolean setTaskToUnDone() throws JproworkRuntimeException {
String token = RemoteAPIHandler.getToken();
if (token == null) {
throw new InvalidTokenException("Invalid token or none given");
}
String doneStatus = "0"; // 1 -> done, 0 -> undone
String responseJson;