观远数据开放平台
首页
官网
社区
文档
版本
当前版本V7.1.0
观远数据开放平台
  • 开发指南
  • 数据集
  • 仪表板
    • 获取页面列表POST
    • 根据页面名称关键词搜索页面POST
    • 获取指定页面有读权限的用户列表POST
    • 以树状结构获取页面列表POST
    • 以PDF或者图片模式导出仪表板POST
    • 获取仪表板导出文件POST
    • 获取页面基本信息GET
    • 获取页面信息GET
  • 订阅预警
  • 卡片
  • 权限
  • 资源操作
  • 卡片导出
  • session
  • 文件夹
  • 数据账户
  • 身份认证
  • 用户管理
亮色模式

    获取页面列表

    POST/public-api/page/list

    :::note[接口简介]
    获取页面列表信息
    :::

    请求参数

    Body 参数application/json
    token
    string 
    应用Token
    必需

    在观远平台管理员设置-系统集成-统一账户集成中获得

    示例
    {
      "token": "string"
    }

    示例代码

    返回响应

    成功(200)
    HTTP 状态码: 200
    内容格式: JSONapplication/json
    数据结构
    result
    string 
    请求状态
    必需

    枚举值: ok、fail

    response
    array [object {11}] 
    响应结果
    必需
    pgId
    string 
    页面ID
    必需
    name
    string 
    页面名
    必需
    domId
    string 
    域ID
    必需
    uId
    string 
    页面创建者
    必需
    pgType
    string 
    类型
    必需

    页面类型:"OVERVIEW"(概览)、"PAGE"(普通页面)、 "LARGE_SCREEN"(数据大屏)

    description
    string 
    描述
    可选
    parentDirId
    string 
    父目录ID
    可选
    ctime
    string 
    创建时间
    必需
    settings
    object 
    配置
    可选
    isDel
    boolean 
    是否删除
    可选
    meta
    object 
    元数据
    可选
    示例
    {
      "result": "ok",
      "response": [
        {
          "pgId": "q1b39f790e98f43b8bdcb1a3",
          "domId": "testing",
          "name": "概览",
          "uId": "m5b7407230a3a4fda87b8f6b",
          "pgType": "OVERVIEW",
          "description": "",
          "parentDirId": "a8ee6f4f1e4f3499c9091147",
          "ctime": "2019-08-08 15:54:20+0800",
          "settings": {
            "authorized": true,
            "authorizedOnPC": true,
            "authorizedOnMobile": false,
            "inheritAuth": true,
            "descriptionVisible": false
          },
          "isDel": false,
          "meta": {
            "authorized": true,
            "authorizedOnPC": true,
            "authorizedOnMobile": false,
            "inheritAuth": true,
            "descriptionVisible": false
          }
        },
        {
          "pgId": "l7da70c5be8c3405b863476c",
          "domId": "testing",
          "name": "概览",
          "uId": "n130a3d9278784b4d90baae9",
          "pgType": "OVERVIEW",
          "description": "",
          "parentDirId": "a8ee6f4f1e4f3499c9091147",
          "ctime": "2019-08-08 16:11:01+0800",
          "settings": {
            "authorized": true,
            "authorizedOnPC": true,
            "authorizedOnMobile": false,
            "inheritAuth": true,
            "descriptionVisible": false
          },
          "isDel": false,
          "meta": {
            "authorized": true,
            "authorizedOnPC": true,
            "authorizedOnMobile": false,
            "inheritAuth": true,
            "descriptionVisible": false
          }
        }
      ]
    }
    最后修改时间: 2 个月前
    下一页
    POST根据页面名称关键词搜索页面
    举报