Skip to main content
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>"
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
notify
object
required
spaceId
string
required

Response

200

import successfully

Last modified on December 10, 2025