public class WxCpMeetingServiceImpl extends Object implements WxCpMeetingService
| 构造器和说明 | 
|---|
| WxCpMeetingServiceImpl() | 
| 限定符和类型 | 方法和说明 | 
|---|---|
| void | cancel(String meetingId)取消预约会议
 该接口用于取消一个指定的预约会议。 | 
| String | create(WxCpMeeting meeting)创建预约会议
 
 该接口用于创建一个预约会议。 | 
| WxCpMeeting | getDetail(String meetingId)获取会议详情
 
 该接口用于获取指定会议的详情内容。 | 
| WxCpUserMeetingIdResult | getUserMeetingIds(String userId,
                 String cursor,
                 Integer limit,
                 Long beginTime,
                 Long endTime)获取成员会议ID列表
 该接口用于获取指定成员指定时间内的会议ID列表。 | 
| WxCpMeetingUpdateResult | update(WxCpMeeting meeting)修改预约会议
 
 该接口用于修改一个指定的预约会议。。 | 
public String create(WxCpMeeting meeting) throws WxErrorException
WxCpMeetingService该接口用于创建一个预约会议。
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/meeting/create?access_token=ACCESS_TOKEN
create 在接口中 WxCpMeetingServicemeeting - the meetingWxErrorException - the wx error exceptionpublic WxCpMeetingUpdateResult update(WxCpMeeting meeting) throws WxErrorException
WxCpMeetingService该接口用于修改一个指定的预约会议。。
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/meeting/update?access_token=ACCESS_TOKEN
update 在接口中 WxCpMeetingServicemeeting - the meetingWxErrorException - the wx error exceptionpublic void cancel(String meetingId) throws WxErrorException
WxCpMeetingService请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/meeting/cancel?access_token=ACCESS_TOKEN
cancel 在接口中 WxCpMeetingServicemeetingId - 会议IDWxErrorException - the wx error exceptionpublic WxCpMeeting getDetail(String meetingId) throws WxErrorException
WxCpMeetingService该接口用于获取指定会议的详情内容。
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/oa/meeting/get?access_token=ACCESS_TOKEN
getDetail 在接口中 WxCpMeetingServicemeetingId - the meeting idsWxErrorException - the wx error exceptionpublic WxCpUserMeetingIdResult getUserMeetingIds(String userId, String cursor, Integer limit, Long beginTime, Long endTime) throws WxErrorException
WxCpMeetingService权限说明: 只能拉取该应用创建的会议ID 自建应用需要配置在“可调用接口的应用”列表 第三方服务商创建应用的时候,需要开启“会议接口权限” 代开发自建应用需要授权“会议接口权限”
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/meeting/get_user_meetingid?access_token=ACCESS_TOKEN
getUserMeetingIds 在接口中 WxCpMeetingServiceuserId - 企业成员的useridcursor - 上一次调用时返回的cursor,初次调用可以填"0"limit - 每次拉取的数据量,默认值和最大值都为100beginTime - 开始时间endTime - 结束时间,时间跨度不超过180天。如果begin_time和end_time都没填的话,默认end_time为当前时间WxErrorException - the wx error exceptionCopyright © 2024. All rights reserved.