PUT
/
base
/
{baseId}
/
table
/
{tableId}
/
db-table-name
curl --request PUT \
  --url https://app.teable.cn/api/base/%7BbaseId%7D/table/%7BtableId%7D/db-table-name \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"dbTableName":"string"}'

Authorizations

Authorization
string
header
required

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

Path Parameters

baseId
string
required
tableId
string
required

Body

application/json
dbTableName
string
required

table name in backend database. Limitation: 1-63 characters, start with letter or underscore, can only contain letters, numbers and underscore, case sensitive, cannot be duplicated with existing table name in the base.

Minimum length: 1

Response

200

Database table name successfully updated.