Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

查询会议室层级列表

查询会议室层级列表

请求说明

请求地址https://openapi.wps.cn/v7/meeting_room_levels
请求方法GET
签名方式KSO-1
权限要求查询会议室(应用授权) kso.meeting_rooms.read

请求头(Header)

Header 名称参数类型是否必填说明
Content-Typestring使用:application/json
X-Kso-DatestringRFC1123 格式的日期,例: Wed, 23 Jan 2013 06:43:08 GMT
X-Kso-AuthorizationstringKSO-1 签名值,详见《签名方法》
Authorizationstring授权凭证,格式为:Bearer {access_token}

查询参数(Query)

名称参数类型是否必填说明
page_sizeinteger每页数量,默认 20
page_tokenstring分页凭证,首次不传,后续需要
room_level_idstring层级 id,传空获取根节点

请求地址示例

[GET] https://openapi.wps.cn/v7/meeting_room_levels?page_size={integer}&page_token={string}&room_level_id={string}

响应体

名称参数类型说明
codeinteger响应代码。非 0 表示失败,参照《状态码说明》
msgstring响应信息
dataobject响应数据
∟ itemsarray[object]会议室层级列表
∟ ∟ has_childboolean是否有子层级
∟ ∟ idstring会议室层级 id
∟ ∟ namestring层级名称
∟ ∟ parent_idstring父亲层级 id,当层级为企业根目录时,parent_id 为 0
∟ ∟ patharray[string]会议室层级路径,从根层级到本层级的 id 路径
∟ next_page_tokenstring下一页凭证,该参数不存在或为空串时表示没有下一页
moreobject更多的错误信息

响应体示例

json
{
  "code": 0,
  "data": {
    "items": [
      {
        "has_child": false,
        "id": "string",
        "name": "string",
        "parent_id": "string",
        "path": [
          "string"
        ]
      }
    ],
    "next_page_token": "string"
  },
  "msg": "string"
}
回到旧版