quickbase_delete_field
Remove a specific field from a QuickBase table by specifying the table ID and field ID using this tool. Simplifies field management and maintains table structure.
Instructions
Delete a field from a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldId | Yes | Field ID to delete | |
tableId | Yes | Table ID |
Input Schema (JSON Schema)
{
"properties": {
"fieldId": {
"description": "Field ID to delete",
"type": "number"
},
"tableId": {
"description": "Table ID",
"type": "string"
}
},
"required": [
"tableId",
"fieldId"
],
"type": "object"
}