Order Processing
Trigger a workflow when an order enters the processing status.
Overview
The Order Processing trigger fires when an order transitions to the “processing” status. This typically means payment has been received and the order is ready to be fulfilled.
When It Fires
- Payment successfully processed
- Admin manually sets status to processing
- Order status changed via API
- Bank transfer confirmed
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| Payment Method | select | No | Filter by payment method |
| Minimum Total | number | No | Only orders above this amount |
Available Data
All order data from Order Created is available, plus:
| Variable | Type | Description |
|---|---|---|
{{Trigger.date_paid}} | string | Payment timestamp |
{{Trigger.transaction_id}} | string | Payment transaction ID |
Example Workflows
Fulfillment Queue
Add to fulfillment system:
- Trigger: Order Processing
- Action: Airtable - Create Record
- Table: Fulfillment Queue
- Order ID:
{{Trigger.order_id}} - Items:
{{Trigger.items}} - Ship To: Full shipping address
Warehouse Notification
Alert warehouse team:
- Trigger: Order Processing
- Action: Send Email
- To:
warehouse@yourstore.com - Subject:
Ready to Ship: Order #{{Trigger.order_number}} - Body: Packing list and shipping details
- To:
Customer Update
Notify customer of progress:
- Trigger: Order Processing
- Action: Send Email
- To:
{{Trigger.billing.email}} - Subject:
Your order is being prepared! - Body: Status update with estimated delivery
- To:
Inventory Check
Verify stock for order:
- Trigger: Order Processing
- Action: Check stock levels
- Condition: If any item low stock
- Action: Send alert to purchasing
Processing Status Meaning
The “processing” status indicates:
- Payment received (for paid orders)
- Ready for fulfillment
- Not yet shipped/completed
Best Practices
- Use for internal fulfillment workflows
- Great for warehouse/shipping notifications
- Consider for inventory management
- Avoid marketing - use Completed instead