用户组操作
获取用户组详情
var axios = require('axios').create({
withCredentials: true
})
axios.get('https://cloud.minapp.com/userve/v1/user-group/47/').then(res => {
console.log(res.data)
}){
"id": 47,
"members": 0,
"name": "User Group",
"parent": {
"id": 1,
"name": "Super Group"
}
}获取用户组列表
创建用户组
修改用户组
删除用户组
批量删除用户组
Last updated
Was this helpful?