🆕 #2612 【企业微信】增加获取企业活跃成员数和通讯录异步导出的接口

This commit is contained in:
zhongjun
2022-04-22 09:01:19 +08:00
committed by GitHub
parent 5d0364f6d2
commit 1030115751
10 changed files with 325 additions and 0 deletions

View File

@@ -215,6 +215,7 @@ public interface WxCpApiPathConsts {
String GET_USER_ID = "/cgi-bin/user/getuserid";
String GET_EXTERNAL_CONTACT = "/cgi-bin/crm/get_external_contact?external_userid=";
String GET_JOIN_QR_CODE = "/cgi-bin/corp/get_join_qrcode?size_type=";
String GET_ACTIVE_STAT = "/cgi-bin/user/get_active_stat";
}
interface ExternalContact {
@@ -310,4 +311,12 @@ public interface WxCpApiPathConsts {
String CUSTOMER_BATCH_GET = "/cgi-bin/kf/customer/batchget";
}
interface Export {
String SIMPLE_USER = "/cgi-bin/export/simple_user";
String USER = "/cgi-bin/export/user";
String DEPARTMENT = "/cgi-bin/export/department";
String TAG_USER = "/cgi-bin/export/taguser";
String GET_RESULT = "/cgi-bin/export/get_result?jobid=%s";
}
}