获取子管理员列表接口

优质
小牛编辑
126浏览
2023-12-01

功能说明

通过接口查询管理员列表,返回管理员信息.

接口说明

请求header

GET http://{your-domain}/v1/account/managers

Authorization:Bearer {ACCESS TOKEN}
Content-Type:application/json

注:

请将上方的{ACCESS TOKEN}替换为您的ACCESS TOKEN

请将 {your-domain} 替换为您的域名,或者 mudu.tv

参数说明

参数参数说明参数类型是否必填备注
p页码integer默认第一页
perPage每页显示条数integer默认20条,最高100条

返回

 {
     "page": {
         "p": 1,
         "perPage": "20",
         "count": 25
     },
     "data": [
         {
             "id": 11,
             "limit_type": 1,
             "transfer_limit": 0,
             "time_limit": 60,
             "username": "www",
             "belong_to": 123,
             "pay_type": 2
         },
         {
             "id": 22,
             "limit_type": 1,
             "transfer_limit": 1243,
             "time_limit": 0,
             "username": "eee",
             "belong_to": 32,
             "pay_type": 2
         }
     ]
 }

返回参数说明

参数描述类型
p页码integer
perPage每页显示条数integer
count总条数integer
idIDinteger
limit_type限制类型 1:时长,2:流量integer
transfer_limit账号使用流量限制integer
time_limit时长限制integer
username用户名string
pay_type消费类型integer