delete_record
Permanently remove a record from Virtuous CRM by specifying the object type and ID. Requires explicit user confirmation to execute.
Instructions
MUTATING + DESTRUCTIVE: delete a record via DELETE /api/{object_type}/{id}.
This permanently removes data. DO NOT call with confirm=true unless the user has explicitly approved deleting this exact record. With confirm=false this performs no change and returns a preview.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | No | Must be true to actually delete. Set ONLY after explicit user approval. | |
| record_id | Yes | The id of the record to delete. | |
| object_type | Yes | Object to delete, e.g. 'ContactNote', 'ContactTag'. |