in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [739:754]
public List<NCResult> check(Set<String> srvReqIds, Integer maxRows, Long usrId, String usrExtId) throws NCClientException, IOException {
NCCheckBean b =
checkAndExtract(
post(
"check",
Pair.of("acsTok", acsTok),
Pair.of("srvReqIds", srvReqIds),
Pair.of("maxRows", maxRows),
Pair.of("usrId", usrId),
Pair.of("usrExtId", usrExtId)
),
NCCheckBean.class
);
return new ArrayList<>(b.getStates());
}