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
Response
Column deleted successfully
Example response
{
"data": {
"columns": [
{
"name": "email"
}
]
}
}