获取某个日程参与者为用户组的成员
获取某个日程参与者为用户组的成员,注意群组成员才可以展开访问,与用户组成员获取权限相同
请求说明
请求地址 | https://openapi.wps.cn/v7/calendars/{calendar_id}/events/{event_id}/attendee_groups/{group_id}/members |
---|---|
请求方法 | GET |
签名方式 | KSO-1 |
权限要求 | 查询日程(应用授权) kso.calendar_events.read 查询和管理日程信息(应用授权) kso.calendar_events.readwrite 查询日程(用户授权) kso.calendar_events.read 查询和管理日程信息(用户授权) kso.calendar_events.readwrite |
请求头(Header)
Header 名称 | 参数类型 | 是否必填 | 说明 |
---|---|---|---|
Content-Type | string | 是 | 使用:application/json |
X-Kso-Date | string | 是 | RFC1123 格式的日期,例: Wed, 23 Jan 2013 06:43:08 GMT |
X-Kso-Authorization | string | 是 | KSO-1 签名值,详见《签名方法》 |
Authorization | string | 是 | 授权凭证,格式为:Bearer {access_token} |
路径参数(Path)
名称 | 参数类型 | 说明 |
---|---|---|
calendar_id | string | |
event_id | string | |
group_id | string |
查询参数(Query)
名称 | 参数类型 | 是否必填 | 说明 |
---|---|---|---|
page_size | integer | 否 | |
page_token | string | 否 |
请求地址示例
[GET] https://openapi.wps.cn/v7/calendars/{calendar_id}/events/{event_id}/attendee_groups/{group_id}/members?page_size={integer}&page_token={string}
响应体
名称 | 参数类型 | 说明 |
---|---|---|
code | integer | 响应代码。非 0 表示失败,参照《状态码说明》 |
msg | string | 响应信息 |
data | object | 响应数据 |
∟ items | array[object] | |
∟ ∟ member | object | group_member |
∟ ∟ ∟ about | string | 成员个性签名 |
∟ ∟ ∟ ctime | integer | 创建时间 |
∟ ∟ ∟ dept_info | array[object] | 部门信息 |
∟ ∟ ∟ ∟ abs_path | string | 绝对路径 |
∟ ∟ ∟ ∟ id | string | 部门 id |
∟ ∟ ∟ ∟ id_path | string | id 路径 |
∟ ∟ ∟ ∟ name | string | 部门名称 |
∟ ∟ ∟ ∟ parent_id | string | 父部门 id |
∟ ∟ ∟ group_id | string | 组 id |
∟ ∟ ∟ item_id | string | 成员 id |
∟ ∟ ∟ item_type | string[enum] | 成员类型 normal ;dept |
∟ ∟ ∟ mtime | integer | 更新时间 |
∟ ∟ ∟ nickname | string | 成员昵称 |
∟ ∟ ∟ role | string[enum] | 成员角色 normal ;admin ;owner |
∟ ∟ ∟ user_info | object | 用户信息 |
∟ ∟ ∟ ∟ avatar | string | 账户头像 |
∟ ∟ ∟ ∟ company_id | string | 企业 id |
∟ ∟ ∟ ∟ depts | array[object] | 部门信息 |
∟ ∟ ∟ ∟ id | string | |
∟ ∟ ∟ ∟ status | string[enum] | 账户状态 active ;notactive ;disabled ;dimission |
∟ ∟ ∟ ∟ user_name | string | 用户名 |
∟ ∟ response_status | string | 响应状态, 添加参与者不需要传递; not_responded:未答复,declined:拒绝,accepted:接收,tentative:待定 |
∟ next_page_token | string | |
more | object | 更多的错误信息 |
响应体示例
json
{
"code": 0,
"data": {
"items": [
{
"member": {
"about": "string",
"ctime": 0,
"dept_info": [
{
"abs_path": "string",
"id": "string",
"id_path": "string",
"name": "string",
"parent_id": "string"
}
],
"group_id": "string",
"item_id": "string",
"item_type": "string[enum]",
"mtime": 0,
"nickname": "string",
"role": "string[enum]",
"user_info": {
"avatar": "string",
"company_id": "string",
"depts": [],
"id": "string",
"status": "string[enum]",
"user_name": "string"
}
},
"response_status": "string"
}
],
"next_page_token": "string"
},
"msg": "string"
}