Innoshop Panel API
首页InnoShop官网
源码地址
  • Github
  • Gitee
首页InnoShop官网
源码地址
  • Github
  • Gitee
  1. FileManager
  • Catalog
    • 分类列表
      GET
    • 创建分类
      POST
    • 更新分类
      PUT
    • 删除分类
      DELETE
    • 文章分类自动完成
      GET
    • Catalog Names
      GET
  • Article
    • 文章列表
      GET
    • 文章列表
      GET
    • 创建文章
      POST
    • 更新文章
      PUT
    • 删除文章
      DELETE
    • 文章自动完成
      GET
    • Article Names
      GET
  • Page
    • 单页列表
      GET
    • 创建单页
      POST
    • 更新单页
      PUT
    • 删除单页
      DELETE
    • 单页自动完成
      GET
    • Page Names
      GET
  • Tag
    • 标签列表
      GET
    • 标签列表
      GET
    • 创建标签
      POST
    • 创建标签
      POST
    • 更新标签
      PUT
    • 更新标签
      PUT
    • 删除标签
      DELETE
    • 删除标签
      DELETE
    • Tag Names
      GET
  • Product
    • 产品列表
    • Product Names
    • 自动完成
    • 批量导入
    • 全量更新
    • 增量更新
  • Category
    • 分类列表
    • Category Names
    • 自动完成
  • Order
    • Upate Note
  • Customer
    • 客户列表
    • 创建客户
    • 更新客户
    • 删除客户
    • 客户自动完成
    • 获取客户名称
  • Brand
    • 品牌自动完成
    • Brand Names
  • FileManager
    • File List
      GET
    • Directory List
      GET
    • Create Directory
      POST
  • Inquiry
    • 更新询价数量价格
  • Shipment
    • 删除发货单
    • 物流跟踪
    • 创建发货单
  • 后台Token
    POST
  • 后台概览
    GET
  • 获取当前用户
    GET
  1. FileManager

File List

开发中
GET
/file_manager/files

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Query 参数
page
string 
必需
示例值:
1
per_page
string 
必需
示例值:
10
base_folder
string 
必需
示例值:
/demo

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://innoshop.test/api/panel/file_manager/files?page=1&per_page=10&base_folder=/demo'

返回响应

🟢200成功
application/json
Body
images
array [object {6}] 
必需
path
string 
必需
name
string 
必需
origin_url
string 
必需
url
string 
必需
mime
string 
必需
selected
boolean 
必需
image_total
integer 
必需
image_page
integer 
必需
示例
{
    "images": [
        {
            "path": "/catalog/demo/image_plus_1-en.png",
            "name": "image_plus_1-en.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_1-en.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_1-en-100x100.png",
            "mime": "image/png",
            "selected": false
        },
        {
            "path": "/catalog/demo/image_plus_1.png",
            "name": "image_plus_1.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_1.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_1-100x100.png",
            "mime": "image/png",
            "selected": false
        },
        {
            "path": "/catalog/demo/image_plus_2-en.png",
            "name": "image_plus_2-en.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_2-en.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_2-en-100x100.png",
            "mime": "image/png",
            "selected": false
        },
        {
            "path": "/catalog/demo/image_plus_2.png",
            "name": "image_plus_2.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_2.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_2-100x100.png",
            "mime": "image/png",
            "selected": false
        },
        {
            "path": "/catalog/demo/image_plus_3-en.png",
            "name": "image_plus_3-en.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_3-en.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_3-en-100x100.png",
            "mime": "image/png",
            "selected": false
        },
        {
            "path": "/catalog/demo/image_plus_3.png",
            "name": "image_plus_3.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_3.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_3-100x100.png",
            "mime": "image/png",
            "selected": false
        },
        {
            "path": "/catalog/demo/image_plus_4-en.png",
            "name": "image_plus_4-en.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_4-en.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_4-en-100x100.png",
            "mime": "image/png",
            "selected": false
        },
        {
            "path": "/catalog/demo/image_plus_4.png",
            "name": "image_plus_4.png",
            "origin_url": "http://enterprise.test/catalog/demo/image_plus_4.png",
            "url": "http://enterprise.test/cache/catalog/demo/image_plus_4-100x100.png",
            "mime": "image/png",
            "selected": false
        }
    ],
    "image_total": 8,
    "image_page": 1
}
修改于 2025-02-19 13:32:40
上一页
Brand Names
下一页
Directory List
Built with