查询分类列表
更新时间:2022-3-1
接口描述
该接口用于查询媒资分类列表。
请求地址
https://spark.bokecc.com/api/media/category/list
请求方式
GET
请求参数
以下请求参数需要进行THQS权限认证, 权限认证方式请参考THQS认证方式。
名称 |
类型 |
必填 |
描述 |
userid |
String |
是 |
用户ID。 |
请求示例
https://spark.bokecc.com/api/media/category/list?time=1671694092541&userid=CC443A6686737xxx&hash=6CB23700C59430E4006ABAAD69DBCBF8
返回数据
名称 |
类型 |
说明 |
categorys |
Array |
分类信息 |
categorys说明
名称 |
类型 |
说明 |
id |
String |
分类ID。 |
name |
String |
分类名称。 |
parent_id |
String |
上级ID(0为一级分类)。 |
default |
Boolean |
是否是默认分类。 |
children |
Array |
子分类。 |
children说明
名称 |
类型 |
说明 |
id |
String |
分类ID。 |
name |
String |
分类名称。 |
parent_id |
String |
上级ID(0为一级分类)。 |
default |
Boolean |
是否是默认分类。 |
返回示例
{
"categorys": [
{
"default": true,
"id": "xxxxxxxxxxxxxxxx",
"name": "默认分类",
"parent_id": "0",
"children": [
{
"children": [
{
"default": false,
"id": "xxxxxxxxxxxxxxxx",
"name": "233",
"parent_id": "xxxxxxxxxxxxxxxx"
}
],
"default": false,
"id": "xxxxxxxxxxxxxxxx",
"name": "分类1",
"parent_id": "xxxxxxxxxxxxxxxx"
},
{
"children": [],
"default": false,
"id": "xxxxxxxxxxxxxxxx",
"name": "123",
"parent_id": "xxxxxxxxxxxxxxxx"
}
]
}
]
}