in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [603:618]
public void clearDialog(String mdlId, Long usrId, String usrExtId) throws NCClientException, IOException {
notNull(mdlId, "mdlId");
checkStatus(
gson.fromJson(
post(
"clear/dialog",
Pair.of("acsTok", acsTok),
Pair.of("mdlId", mdlId),
Pair.of("usrId", usrId),
Pair.of("usrExtId", usrExtId)
),
NCStatusResponseBean.class
)
);
}