用户组操作
获取用户组详情
curl -X GET \
-H "Authorization: Bearer 58f6cd9f84b1b0c04941fbd4d87bc5f14a785107" \
-H "Content-Type: application/json" \
https://cloud.minapp.com/oserve/v1/user-group/47/var request = require('request');
var opt = {
uri: 'https://cloud.minapp.com/oserve/v1/user-group/655', // 655 对应 :group_id
method: 'GET',
headers: {
Authorization: `Bearer ${token}`,
}
}
request(opt, function(err, res, body) {
console.log(body)
})获取用户组列表
创建用户组
修改用户组
删除用户组
批量删除用户组
Last updated
Was this helpful?