quickbase_delete_record
Remove a specific record from a QuickBase table by providing the table ID and record ID. This tool simplifies data management within the QuickBase MCP Server.
Instructions
Delete a record from a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recordId | Yes | Record ID to delete | |
tableId | Yes | Table ID |
Input Schema (JSON Schema)
{
"properties": {
"recordId": {
"description": "Record ID to delete",
"type": "number"
},
"tableId": {
"description": "Table ID",
"type": "string"
}
},
"required": [
"tableId",
"recordId"
],
"type": "object"
}