观远数据开放平台
返回最新版
当前版本V7.0.0
观远数据开放平台
  • 开发指南
  • 用户
  • 用户组
  • 角色
  • 数据集
  • 仪表板
    • 获取页面列表POST
    • 根据页面名称关键词搜索页面POST
    • 获取指定页面有读权限的用户列表POST
    • 以树状结构获取页面列表POST
    • 以PDF或者图片模式导出仪表板POST
    • 获取仪表板导出文件POST
  • 订阅预警
  • 卡片
  • 卡片导出
  • 权限
  • 资源操作
  • 用户登录POST
亮色模式

    获取页面列表

    POST/public-api/page/list

    请求参数

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

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

    示例
    {
      "token": "string"
    }

    示例代码

    返回响应

    成功(200)
    HTTP 状态码: 200
    内容格式: JSONapplication/json
    数据结构
    result
    string 
    必需
    response
    array [object {11}] 
    必需
    pgId
    string 
    必需
    domId
    string 
    必需
    name
    string 
    必需
    uId
    string 
    页面创建者
    必需
    pgType
    string 
    必需
    description
    string 
    可选
    parentDirId
    string 
    可选
    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
          }
        }
      ]
    }
    最后修改时间: 7 个月前
    下一页
    POST根据页面名称关键词搜索页面
    举报