in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [708:719]
public void deleteFeedback(Long id) throws NCClientException, IOException {
checkStatus(
gson.fromJson(
post(
"feedback/delete",
Pair.of("acsTok", acsTok),
Pair.of("id", id)
),
NCStatusResponseBean.class
)
);
}