Tables
Add Column
Add a new column to the table schema. Optionally specify a position to insert the column at a specific index.
post/api/v1/tables/{tableId}/columns
Path parameters
tableIdstring required
Example:tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14
The unique identifier of the table.
Request body
Response
Column added successfully
Example response
{
"data": {
"columns": [
{
"name": "email"
}
]
}
}