跳转到主要内容
POST
/
base
/
{baseId}
/
app
/
{appId}
/
deploy
cURL
curl --request POST \
  --url https://app.teable.ai/api/base/%7BbaseId%7D/app/%7BappId%7D/deploy \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "status": "deploying",
  "version": 123,
  "publicUrl": "<string>",
  "error": "<string>"
}

授权

Authorization
string
header
必填

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

路径参数

baseId
string
必填

Base ID

appId
string
必填

App ID

响应

201 - application/json

Deployment result

status
enum<string>
必填

Deployment status

可用选项:
deploying,
success,
failed
version
number

App version

publicUrl
string

Public URL

error
string

Error message if failed

Last modified on March 5, 2026