NOTE: You are looking at documentation for an older release. For the latest information, see the current release documentation.
Delete Watch API
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Delete Watch API
editExecution
editA watch can be deleted as follows:
DeleteWatchRequest request = new DeleteWatchRequest("my_watch_id");
DeleteWatchResponse response = client.watcher().deleteWatch(request, RequestOptions.DEFAULT);
Response
editThe returned DeleteWatchResponse contains found, id,
and version information.
Asynchronous Execution
editThis request can be executed asynchronously:
The asynchronous method does not block and returns immediately. Once it is
completed the ActionListener is called back using the onResponse method
if the execution successfully completed or using the onFailure method if
it failed.
A typical listener for DeleteWatchResponse looks like: