public NCUser getUser()

in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [526:537]


    public NCUser getUser(Long id, String extId) throws NCClientException, IOException {
        return
            checkAndExtract(
                post(
                    "user/get",
                    Pair.of("acsTok", acsTok),
                    Pair.of("id", id),
                    Pair.of("usrExtId", extId)
                ),
                NCUserBean.class
            );
    }