Purpose:
Deletes an existing column from a specified table within a workspace.
DELETE /noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/columns/{columnId}
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Workspace identifier |
| workbookId | UUID | ✅ Yes | Table identifier |
| columnId | UUID | ✅ Yes | Identifier of the column to delete |
Requires Bearer JWT Token
Authorization: Bearer <token>
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
No request body required. The column to delete is identified entirely by the columnId path parameter.
curl -X DELETE 'https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/tables/{workbookId}/columns/{columnId}' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json'
Deletes a column from the specified workbook table.
Validation Rules:
• workspaceId, workbookId, and columnId must all be valid
• User must have delete permission on the column
• System-generated or formula columns may not be deletable
• Deletion is permanent — column data cannot be recovered