Delete Entry
Remove Gravity Forms entries automatically.
Overview
The Delete Entry action removes a Gravity Forms entry. Use this for cleanup, GDPR compliance, or removing processed entries.
Configuration
Required Fields
| Field | Type | Description |
|---|
| Entry | integer | Entry ID to delete |
Optional Fields
| Field | Type | Default | Description |
|---|
| Force Delete | boolean | false | Skip trash, permanent delete |
Example Configurations
Soft Delete
Entry: {{Trigger.entry_id}}
Force Delete: false
Permanent Delete
Entry: {{Trigger.entry_id}}
Force Delete: true
Delete After Processing
Entry: {{Trigger.processed_entry_id}}
Force Delete: true
Output Data
| Variable | Type | Description |
|---|
{{Action.entry_id}} | integer | Deleted entry ID |
{{Action.deleted}} | boolean | Success status |
Common Workflows
GDPR Deletion
- Trigger: Deletion request
- Action: Delete Entry
Cleanup Old Entries
- Trigger: Daily schedule
- Condition: Entry older than 90 days
- Action: Delete Entry
Remove Spam
- Trigger: Entry marked spam
- Action: Delete Entry
Best Practices
- Consider soft delete first
- Log deletions for compliance
- Backup important data before deleting
- Set up retention policies
Trash vs Permanent
| Force Delete | Result |
|---|
false | Moves to trash (30 days) |
true | Immediate permanent deletion |