空间管理

更新时间:2020-10-12

获取空间列表

接口简介

获取空间列表

接口详情

请求地址

/openapi/v1/company/group?__scp__={__scp__}&searchText=&page=1&perPage=10

请求类型

GET

请求参数

参数名 类型 必填 描述 默认值 参考值
page Number 第几页 1 1
perPage Number 每页条数 10 10
searchText String 搜索的用户名 - -

返回正确 JSON 示例

{
  status: 0,
  msg: "",
  data: {
    count: 2,
    rows: [
      {
        config: { },
        hash: "g_ada15-5fidzg4-p284kv",
        name: "第一个空间",
        avatar: "",
        remark: "系统自动创建的空间,如果要让其用户浏览,需要将用户加入您的组织并加入该空间",
        type: 0,
        token: "***",
        navWidth: "normal",
        key: "first",
        createDate: "2019-11-26T12:37:04.000Z",
        admins: [
          {
            name: "test@baidu.com",
            email: "test@baidu.com",
            realName: "test",
            avatar: ""
          }
        ]
      },
      {
        config: { },
        hash: "g_ada15-1a3y97mo-9kqzkx",         // 空间hash
        name: "Sugar官方示例报表组",               // 空间名称
        remark: "",                             // 空间描述
        type: 3,                                //
        key: "sugar_offical_demo_qazwsx",       // 空间key值,即接口中的{groupKey}
        admins: [ ]                             // 管理员信息
      }
    ]
  }
}

返回错误 JSON 示例

{
  msg: '错误详情',
  status: 499,
  requestId: '',
  code: 'NoSuchKey'
}

修改空间管理员

接口简介

修改空间管理员

接口详情

请求地址

/openapi/v1/company/group/{groupHash}?__scp__={__scp__}

注:groupHash 从[空间列表]返回数据中 hash 获取

请求类型

PUT

请求参数

{
  admins: ['test@baidu.com'];
}
参数名 类型 必填 描述 默认值 参考值
admins Array 邮箱列表 - [ 'test@baidu.com' ]

返回正确 JSON 示例

{
  status: 0,
  msg: "",
  data: {}
}

返回错误 JSON 示例

{
  msg: '错误详情',
  status: 499,
  requestId: '',
  code: 'NoSuchKey'
}
上一篇用户管理

本页内容