Product Updated
Trigger a workflow when a product is modified.
Overview
The Product Updated trigger fires when any product information is modified. This includes price changes, description updates, inventory adjustments, and more.
When It Fires
- Product edited in admin
- Price changed
- Stock adjusted
- Description updated
- Category/tag changed
- Image updated
- API updates
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| Field Changed | select | No | Filter by specific field |
| Product Type | select | No | Filter by product type |
Available Data
Change Information
| Variable | Type | Description |
|---|---|---|
{{Trigger.changed_fields}} | array | List of changed fields |
{{Trigger.old_values}} | object | Previous values |
{{Trigger.new_values}} | object | New values |
Product Information
All product data from Product Created is available.
Example Workflows
Price Change Alert
Monitor price changes:
- Trigger: Product Updated
- Field Changed: price
- Action: Send Email
- To:
pricing@yourstore.com - Subject:
Price Change: {{Trigger.name}} - Body: Old:
{{Trigger.old_values.price}}→ New:{{Trigger.new_values.price}}
- To:
Inventory Sync
Keep external inventory updated:
- Trigger: Product Updated
- Field Changed: stock_quantity
- Action: Update external inventory system
- SKU:
{{Trigger.sku}} - Stock:
{{Trigger.stock_quantity}}
- SKU:
Change Log
Track all product changes:
- Trigger: Product Updated
- Action: Airtable - Create Record
- Product:
{{Trigger.name}} - Changes:
{{Trigger.changed_fields}} - Date: Current timestamp
- Product:
Status Change
Handle publication status:
- Trigger: Product Updated
- Field Changed: status
- Condition: New status is “published”
- Action: Add to social queue
Common Changed Fields
| Field | Description |
|---|---|
price | Any price change |
stock_quantity | Stock level change |
status | Publication status |
name | Product title |
description | Content update |
categories | Category assignment |
Best Practices
- Use field filters to avoid excessive triggers
- Track price changes for competitive analysis
- Keep inventory systems in sync
- Log changes for audit trails