# 移除协作者
# host: https://yach-oapi.zhiyinlou.com 正式环境
# host: https://yach-oapi-test.zhiyinlou.com 测试环境
# 概述
名称 | 值 |
---|---|
地址 | /openapi/v2/doc/collaborator/del |
请求方式 | POST |
参数 | 见【参数】 |
返回值 | 见【返回值】 |
# header
名称 | 值 |
---|---|
Content-Type | application/json |
# 参数
参数 | 参数类型 | 必须 | 说明 |
---|---|---|---|
access_token | String | 是 | 调用接口凭证 |
guid | String | 是 | 文档的guid |
collaborator_work_codes | Array(String) | 否 | 要移除协作者的工号 ,collaborator_work_codes和collaborator_dept_ids两个参数不能同时为空 |
collaborator_dept_ids | Array(Int) | 否 | 要移除协作者的部门ID,collaborator_work_codes和collaborator_dept_ids两个参数不能同时为空 |
入参示例:
{
"access_token":"RHJka2NUc0VvUTBGN2RHK2pMU1VqZEp1UmprcFRtN2N3amhKb04zQ2dIS0tORlNxeHlIdE1ROSsrNXNpTUp3UlNxU0N1RURraUFBbi96ZVJ1MVIrRFhyakNUanZEVDNiZHAxRm9FYmRGck5pSVBCK2JJV21YLzZUaTlyOVlqZUo4c3VqUWg5bzBTQTE3Uml6NzlvZzZRPT0",
"guid":"pmkxQYN2X9CZWxAN",
"collaborator_work_codes":["xxxx"],
"collaborator_dept_ids":[1111111111]
}
返回值(响应从的 200为成功,非200为不成功)
{
"code":200,
"obj":null,
"msg":""
}