Update Entry
Modify existing Gravity Forms entries.
Overview
The Update Entry action modifies an existing Gravity Forms entry. Use this to update field values, change status, or sync entry data with external systems.
Configuration
Required Fields
| Field | Type | Description |
|---|
| Entry | integer | Entry ID to update |
Optional Fields
| Field | Type | Description |
|---|
| Fields | object | Field values to update |
| Status | select | active, spam, trash |
| Is Starred | boolean | Star the entry |
| Is Read | boolean | Mark as read |
Example Configurations
Update Status Field
Entry: {{Trigger.entry_id}}
Fields:
5: Approved # Status dropdown field
Mark as Processed
Entry: {{Trigger.entry_id}}
Fields:
10: processed
11: {{current_date}}
Is Read: true
Sync External Data
Entry: {{Trigger.gf_entry_id}}
Fields:
7: {{Trigger.external_status}}
8: {{Trigger.external_reference}}
Star Important Entries
Entry: {{Trigger.entry_id}}
Is Starred: true
Output Data
| Variable | Type | Description |
|---|
{{Action.entry_id}} | integer | Updated entry ID |
{{Action.updated_fields}} | array | Fields that changed |
Common Workflows
Application Processing
- Trigger: External approval
- Action: Update Entry
- Status field: “Approved”
- Date field: Current date
CRM Sync
- Trigger: CRM record updated
- Action: Update Entry
Workflow Status
- Trigger: Stage completed
- Action: Update Entry
Best Practices
- Only update necessary fields
- Log changes for audit trail
- Handle entry not found errors
- Validate data before updating