Add Order Note
Add private or customer-visible notes to orders.
Overview
The Add Order Note action adds a note to a WooCommerce order. Notes can be private (admin only) or sent to the customer, providing a way to communicate and track order activity.
Configuration
Required Fields
| Field | Type | Description |
|---|
| Order | integer | Order ID |
| Note | string | Note content |
Optional Fields
| Field | Type | Default | Description |
|---|
| Type | select | private | private or customer |
| Send Email | boolean | false | Email note to customer |
Note Types
| Type | Visibility | Use Case |
|---|
private | Admin only | Internal tracking |
customer | Customer visible | Status updates |
Example Configurations
Order: {{Trigger.order_id}}
Type: customer
Note: |
Your order has shipped!
Carrier: {{Trigger.carrier}}
Tracking: {{Trigger.tracking_number}}
Send Email: true
Internal Note
Order: {{Trigger.order_id}}
Type: private
Note: Fraud check passed. Order verified.
Workflow Logging
Order: {{Trigger.order_id}}
Type: private
Note: Automated workflow executed: {{Trigger.workflow_name}}
Customer Update
Order: {{Trigger.order_id}}
Type: customer
Note: Your custom product is being prepared. Estimated completion: 3-5 days.
Send Email: true
Output Data
| Variable | Type | Description |
|---|
{{Action.note_id}} | integer | Created note ID |
{{Action.order_id}} | integer | Order ID |
Common Workflows
Add Tracking
- Trigger: Shipment created
- Action: Add Order Note
- Type: customer
- Note: Tracking info
- Send Email: true
Log External Events
- Trigger: External system event
- Action: Add Order Note
- Type: private
- Note: Event details
Customer Communication
- Trigger: Production milestone
- Action: Add Order Note
- Type: customer
- Note: Progress update
Best Practices
- Use private notes for internal tracking
- Customer notes should be helpful and clear
- Include timestamps for tracking
- Don’t over-communicate with customers