目录
本接口用于查询一篇在线表格中全部智能表信息。
请求方式:POST(HTTPS)
请求地址:https://qyapi.weixin.qq.com/cgi-bin/wedoc/smartsheet/get_sheet?access_token=ACCESS_TOKEN
请求包体:
{
"docid": "DOCID",
"sheet_id": "xxx",
"need_all_type_sheet":true
}
参数说明
参数 | 类型 | 是否必须 | 说明 |
---|---|---|---|
docid | string | 是 | 文档的docid |
sheet_id | string | 否 | 指定子表ID查询 |
need_all_type_sheet | bool | 否 | 获取所有类型子表 |
权限说明
返回示例
{
"errcode": 0,
"errmsg": "ok",
"sheet_list": [
{
"sheet_id": "123Abc",
"title": "XXXX",
"is_visible": true,
"type":"smartsheet"
}
]
}
参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | int32 | 错误码 |
errmsg | string | 错误码说明 |
sheet_list | object[] 智能表信息 | |
sheet_list.sheet_id | string | 子表id |
sheet_list.title | string | 子表名称 |
sheet_list.is_visible | bool | 子表是否可见 |
sheet_list.type | string | 子表类型。"dashboard" 仪表盘。"external" 说明页,"smartsheet" 智能表 |