The following sample deletes a document. You must get the unique key value for record to delete.
//for this sample it is assumed that a document exists with the unique key equal to a String, uniqueKey
protected DocumentRepository documentRepository;
documentRepository.deleteDocument(uniqueKey);