delete_record
Remove specific Salesforce records by specifying the object name and record ID. Use this tool from the salesforce-mcp server to manage data efficiently.
Instructions
Deletes a record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
object_name | Yes | The name of the Salesforce object (e.g., 'Account', 'Contact') | |
record_id | Yes | The ID of the record to delete |
Input Schema (JSON Schema)
{
"properties": {
"object_name": {
"description": "The name of the Salesforce object (e.g., 'Account', 'Contact')",
"type": "string"
},
"record_id": {
"description": "The ID of the record to delete",
"type": "string"
}
},
"required": [
"object_name",
"record_id"
],
"type": "object"
}