Delete record in Creatio
deleteDeletes a record by ID from a specified entity, requiring user confirmation. Supports soft deletion by updating status fields as an alternative.
Instructions
Delete a single record by Id.
⚠️ ALWAYS confirm with user before deleting!
Show what will be deleted (entity, ID, identifying info)
Ask: "Are you sure you want to delete this record?"
Wait for explicit confirmation
💡 SAFER ALTERNATIVE - Soft Delete: Instead of permanent deletion, update status: IsActive=false, IsDeleted=true Example: Use 'update' tool with data={ IsActive: false }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Primary key of the record to delete. GUIDs can be passed as-is; non-GUID strings will be quoted automatically. | |
| entity | Yes | Entity set to delete from (e.g., Contact, Account). |