v13

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-015232292.9 KB
Tables

Update Column

Update a column's name, type, or constraints. Multiple updates can be applied in a single request. When renaming, subsequent updates (type, constraints) use the new name.

patch/api/v1/tables/{tableId}/columns

Path parameters

tableIdstring required
Example:tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14

The unique identifier of the table.

Request body

workspaceIdstring required

The workspace ID

columnNamestring required

Current name of the column to update

Response

Column updated successfully

successboolean

Example response

{
  "data": {
    "columns": [
      {
        "name": "email"
      }
    ]
  }
}