sf_delete
Deletes a Salesforce record by ID. Requires confirm=true to move the record to the Recycle Bin, recoverable for 15 days.
Instructions
Delete a Salesforce record by Id.
SAFETY: You must pass confirm=true — Salesforce deletes go to the Recycle Bin (recoverable for 15 days), but this still removes the live record immediately.
Examples: object="Case" id="500..." confirm=true object="Lead" id="00Q..." confirm=true
Pass confirm=false (default) to preview what would be deleted first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object | Yes | Salesforce object API name | |
| id | Yes | Salesforce record Id | |
| confirm | Yes | Must be true to execute the delete |