OpenList Multipart Upload API
    • Init multipart upload
      POST
    • Upload one chunk
      PUT
    • Complete multipart upload
      POST
    • Query upload session
      GET
    • Abort multipart upload
      POST

      Abort multipart upload

      POST
      /api/fs/multipart/abort
      Cancel the pipeline (the driver handles it as a request cancellation — the local driver, for example, removes the unfinished destination file), discard all buffered chunks and remove the session.

      请求参数

      Authorization
      JWT Bearer
      在 Header 添加参数
      Authorization
      示例:
      Authorization: ********************
      or
      Header 参数

      请求示例代码

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      请求示例请求示例
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST '/api/fs/multipart/abort' \
      --header 'X-Upload-Id;' \
      --header 'Authorization: Bearer <token>'

      返回响应

      🟢200Success
      application/json
      Session cancelled and reclaimed
      Bodyapplication/json

      示例
      {
          "code": 200,
          "message": "success",
          "data": null
      }
      🟠401Unauthorized
      🟠403Not Owner
      🟠404Session Not Found
      修改于 2026-07-13 17:33:15
      上一页
      Query upload session
      Built with