搜索文件或文件夹
POST
/api/fs/search修改时间: 5 个月前
责任人: 未设置
请求参数
Header 参数
Authorization
string
必需
示例值:
{{alist_token}}
Body 参数application/json
parent
string
搜索目录
keywords
string
关键词
scope
integer
搜索类型
0-全部 1-文件夹 2-文件
>= 0<= 2
默认值:
0
示例值:
0
page
integer
页数
per_page
integer
每页数目
password
string
密码
示例
{
"parent": "/local",
"keywords": "test",
"scope": 0,
"page": 1,
"per_page": 1,
"password": ""
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
状态码
message
string
信息
data
object
必需
content
array [object {5}]
必需
total
integer
总数
示例
{
"code": 200,
"message": "success",
"data": {
"content": [
{
"parent": "/m",
"name": "4305da1e",
"is_dir": false,
"size": 393090,
"type": 0
}
],
"total": 1
}
}
最后修改时间: 5 个月前