public interface WxCpOaScheduleService
限定符和类型 | 方法和说明 |
---|---|
java.lang.String |
add(WxCpOaSchedule schedule,
java.lang.Integer agentId)
创建日程
该接口用于在日历中创建一个日程。
|
void |
delete(java.lang.String scheduleId)
取消日程
该接口用于取消指定的日程。
|
java.util.List<WxCpOaSchedule> |
getDetails(java.util.List<java.lang.String> scheduleIds)
获取日程详情
该接口用于获取指定的日程详情。
|
java.util.List<WxCpOaSchedule> |
listByCalendar(java.lang.String calId,
java.lang.Integer offset,
java.lang.Integer limit)
获取日历下的日程列表
该接口用于获取指定的日历下的日程列表。
|
void |
update(WxCpOaSchedule schedule)
更新日程
该接口用于在日历中更新指定的日程。
|
java.lang.String add(WxCpOaSchedule schedule, java.lang.Integer agentId) throws me.chanjar.weixin.common.error.WxErrorException
该接口用于在日历中创建一个日程。
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/oa/schedule/add?access_token=ACCESS_TOKEN
schedule
- the scheduleagentId
- 授权方安装的应用agentid。仅旧的第三方多应用套件需要填此参数me.chanjar.weixin.common.error.WxErrorException
- the wx error exceptionvoid update(WxCpOaSchedule schedule) throws me.chanjar.weixin.common.error.WxErrorException
该接口用于在日历中更新指定的日程。
注意,更新操作是覆盖式,而不是增量式 不可更新组织者和日程所属日历ID
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/oa/schedule/update?access_token=ACCESS_TOKEN
schedule
- the scheduleme.chanjar.weixin.common.error.WxErrorException
- the wx error exceptionjava.util.List<WxCpOaSchedule> getDetails(java.util.List<java.lang.String> scheduleIds) throws me.chanjar.weixin.common.error.WxErrorException
该接口用于获取指定的日程详情。
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/oa/schedule/get?access_token=ACCESS_TOKEN
scheduleIds
- the schedule idsme.chanjar.weixin.common.error.WxErrorException
- the wx error exceptionvoid delete(java.lang.String scheduleId) throws me.chanjar.weixin.common.error.WxErrorException
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/oa/schedule/del?access_token=ACCESS_TOKEN
scheduleId
- 日程idme.chanjar.weixin.common.error.WxErrorException
- the wx error exceptionjava.util.List<WxCpOaSchedule> listByCalendar(java.lang.String calId, java.lang.Integer offset, java.lang.Integer limit) throws me.chanjar.weixin.common.error.WxErrorException
请求方式: POST(HTTPS) 请求地址: https://qyapi.weixin.qq.com/cgi-bin/oa/schedule/get_by_calendar?access_token=ACCESS_TOKEN
calId
- 日历IDoffset
- 分页,偏移量, 默认为0limit
- 分页,预期请求的数据量,默认为500,取值范围 1 ~ 1000me.chanjar.weixin.common.error.WxErrorException
- the wx error exception