in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [722:736]
public List<NCFeedback> getAllFeedback(String srvReqId, Long usrId, String usrExtId) throws NCClientException, IOException {
NCFeedbackAllBean b =
checkAndExtract(
post(
"feedback/all",
Pair.of("acsTok", acsTok),
Pair.of("srvReqId", srvReqId),
Pair.of("usrId", usrId),
Pair.of("usrExtId", usrExtId)
),
NCFeedbackAllBean.class
);
return new ArrayList<>(b.getFeedback());
}