# Function Description

To upload files to local server.

# Request

# request example

GET upload/files HTTPS
Host: <host>
Content-Type: multipart/form-data
Authorization: <AuthString>

# Request Headers

Name Description Type Mandatory
Authorization User token information string true

# Request Parameters

none

#

#

# Request Body

key value type
files test1.mp4 file
keys key1 string

testing case by Postman tool: image.png

# Response

# Response Header

No special response header

# Response Body

Successful Response Body:

{
  "code": 0,
  "message": "",
  "data": {
    "urls": [
      "https://<host>/<filePath>",
      ...
    ]
  }
}