Delete SObject Record
sf_delete_recordDelete a single Salesforce record permanently by ID. Provide the object API name and record ID; the record moves to the Recycle Bin for supported objects, recoverable within 15 days.
Instructions
Deletes a single SObject record by record ID via the Salesforce REST API. The deletion is permanent and cannot be undone (the record goes to the Recycle Bin for objects that support it, from where it can be undeleted within 15 days).
Provide the object API name and the 15 or 18 character record ID. For bulk deletions (100+ records), use sf_bulk_import_records with operation='delete'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recordId | Yes | 15 or 18 character Salesforce record ID | |
| objectApiName | Yes | SObject API name, e.g. 'Account' |