Skip to main content
POST
/
base
/
{baseId}
/
app
/
{appId}
/
import-code
cURL
curl --request POST \
  --url https://app.teable.ai/api/base/%7BbaseId%7D/app/%7BappId%7D/import-code \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: multipart/form-data' \
  --form file=null
{
  "version": 123,
  "filesCount": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

baseId
string
required
appId
string
required

Body

multipart/form-data
file
any | null

ZIP file containing source code

Response

200 - application/json

Source code imported successfully

version
number
required
filesCount
number
required
Last modified on March 5, 2026