DeleteRecordById
Remove a specific record from RushDB using its unique identifier. This tool enables precise data deletion by record ID, with optional transaction support for atomic operations.
Instructions
Delete a record by its ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recordId | Yes | ID of the record to delete | |
| transactionId | No | Optional transaction ID for atomic deletion |
Input Schema (JSON Schema)
{
"properties": {
"recordId": {
"description": "ID of the record to delete",
"type": "string"
},
"transactionId": {
"description": "Optional transaction ID for atomic deletion",
"type": "string"
}
},
"required": [
"recordId"
],
"type": "object"
}