亮色模式
获取指定用户组能访问的页面列表
POST
/public-api/user-group/{ugId}/get-authorized-pages请求参数
Path 参数
ugId
string
用户组ID
Query 参数
pgType
string
可选
页面类型。指定LARGE_SCREEN则会返回大屏的权限信息,不指定则返回普通页面权限
Body 参数application/json
token
string
应用Token
在观远平台管理员设置-系统集成-统一账户集成中获得
示例
{
"token": "string"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
result
string
必需
response
array [object {6}]
必需
id
string
可选
name
string
可选
sources
array [object {3}]
可选
isOwner
boolean
可选
isInherit
boolean
可选
canExport
boolean
可选
示例
{
"result": "ok",
"response": [
{
"id": "k21fac69427ab4c4eb975374",
"name": "页面2",
"sources": [
{
"isSelf": true,
"id": "a619a7d623b9842c89106c5f",
"name": "Group B"
}
],
"isOwner": false,
"isInherit": false,
"canExport": true
}
]
}
最后修改时间: 2 个月前