跳转到主要内容
POST
/
base
/
import
import a base
curl --request POST \
  --url http://127.0.0.1:3000/api/base/import \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "notify": {
    "token": "xxxxxxxxxxx",
    "size": 1024,
    "url": "/bucket/xxxxx",
    "path": "/table/xxxxxx",
    "mimetype": "video/mp4",
    "presignedUrl": "<string>",
    "width": 100,
    "height": 100
  },
  "spaceId": "<string>"
}
'

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

请求体

application/json
notify
object
必填
spaceId
string
必填

响应

200

import successfully

Last modified on December 10, 2025