获取子账号列表
更新时间:2022-07-21
接口描述
该接口用于获取子账号列表。
请求地址
https://spark.bokecc.com/api/subuser/list
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
用户ID。 |
num_per_page |
Integer |
否 |
分页参数,每页显示数量,默认为100。取值范围:1~100之间的任意整数。 |
page |
Integer |
否 |
分页参数,页码,默认为1。取值范围:大于0的整数。 |
请求示例
https://spark.bokecc.com/api/subuser/list?page=1&time=1671633085588&userid=CC443A6686737xxx&hash=4AB052D696DD33DFD611AF0651C15874&num_per_page=10
返回数据
参数 |
类型 |
说明 |
page |
Integer |
页号。 |
num_per_page |
Integer |
每页查询数量。 |
total |
Integer |
总记录数。 |
records |
Array |
记录列表。 |
records说明
参数 |
类型 |
说明 |
id |
String |
子账号ID。 |
user_name |
String |
子账号名称。 |
email |
String |
子账号邮箱。 |
mobile |
String |
子账号手机号。 |
sub_group_id |
String |
子账号组ID。 |
sub_group_name |
String |
子账号组名称。 |
reg_time |
String |
子账号添加时间。 |
返回示例
{
"num_per_page": 10,
"page": 1,
"total": 31,
"records": [
{
"email": "1234@1234.com",
"id": "26ABEA04AE157xxx",
"reg_time": "2013-04-09 10:38:26",
"sub_group_id": "A864ED1B5647Cxxx",
"sub_group_name": "测试组",
"user_name": "测试"
},
......
]
}