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