Skip to content

Instantly share code, notes, and snippets.

@spati-java
Created September 14, 2018 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spati-java/6e1c574424e00ba226601e0d4497a27b to your computer and use it in GitHub Desktop.
Save spati-java/6e1c574424e00ba226601e0d4497a27b to your computer and use it in GitHub Desktop.
public String deleteProfileDocument(String id) throws Exception {
DeleteRequest deleteRequest = new DeleteRequest(INDEX, TYPE, id);
DeleteResponse response =
client.delete(deleteRequest, RequestOptions.DEFAULT);
return response
.getResult()
.name();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment