Delete data on a SuiteCRM server.

Parameters:

Parameters:
See dedicated page for more information.
This box deletes a single record from a selected SuiteCRM module (e.g., accounts, contacts, leads, etc.). It sends an authenticated call to your SuiteCRM API and marks the record as deleted.
Deleting in SuiteCRM is typically soft delete (record is flagged
deleted=1and hidden from the UI). Treat it as irreversible from the UI perspective; recovery, if needed, is a database-level operation.
accounts, contacts, leads, …).https://yourcompany.suiteondemand.com).Everything else can remain at sensible defaults while you test.
accounts).verbose for your first test.continue with status ERROR while testing so the pipeline finishes and shows the error status/message.If everything is correct, the action completes without errors and the record is removed (soft deleted) from the module.
Pick whichever is fastest for you:
From the SuiteCRM UI
Open the record, copy the long hex ID from the URL after record= (e.g., …record=9c9c8e36-…).
From the ETL using suiteCRMDownload
Add a Download box before Delete, filter to the row(s) you need, and read the id column from the output. Then map that id into Column id.
Via API/Reports
If you already fetch records programmatically, reuse the record’s id field.
notes) and delete that first.verbose prints request/response details to the log—useful for setup and troubleshooting. Switch back to nothing later.--proxy http://…), same as in your other SuiteCRM actions.Delete after lookup
suiteCRMDownload (find ID) → suiteCRMDelete (delete record) → optional logger.
Bulk delete
Feed a list of IDs (from CSV or a query) through a loop/iterate construct, call suiteCRMDelete per ID, collect results.
Does this remove related records?
No. It deletes only the chosen record in the selected module. Relationships remain; SuiteCRM hides links to deleted records.
Can I “hard delete”?
The standard API performs soft delete. Hard delete is not supported from this action and is generally discouraged.
Can I undo?
Not from the UI. Recovery would require database-level work; plan accordingly.
