🎉 Arcadia 1.0.0-beta.8(现已发布)
Arcadia

获取文件列表

GET
/file/v1/list

Authorization

OpenApiToken
api-token<token>

32位令牌,在控制面板《个人设置 - 令牌管理》页面获取

In: header

Query Parameters

path*string

绝对路径

Response Body

application/json

curl -X GET "http://localhost:5678/api/open/file/v1/list?path=string"
{
  "path": "string",
  "title": "string",
  "type": "folder",
  "updated_at": "string",
  "created_at": "string",
  "children": [
    {
      "path": "string",
      "name": "string",
      "type": "folder",
      "updated_at": "string",
      "created_at": "string"
    }
  ]
}