v13

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

Delete Column

Delete a column from the table schema. This removes the column definition and strips the corresponding key from all existing row data. Cannot delete the last remaining column.

delete/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

Name of the column to delete

Response

Column deleted successfully

successboolean

Example response

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