Overview
The Update Customer action modifies customer information such as contact details, address, and preferences.
Configuration
Customer ID (Required)
The ID of the customer to update. Supports variables.
Updatable Fields
Contact Information
name- Customer nameemail- Primary emailsecondary_email- Secondary emailphone- Phone numbercountry- Country code
Address
address- Street addresscity- Cityregion- State/regionzip_code- Postal code
Preferences
locales- Preferred languages (array or comma-separated)
Custom Attributes
extra_attributes- Custom key-value pairs
Output
Returns the updated customer object in the workflow context.
Examples
1. Update Email
Customer ID: {customer.id}
Email: {new_email}2. Update Address
Customer ID: {customer.id}
Address: 123 Main St
City: New York
Region: NY
Zip Code: 100013. Update Preferences
Customer ID: {customer.id}
Locales: en,frBest Practices
Verify customer exists - Check customer ID before updating
Validate email - Ensure email format is valid
Preserve data - Only update fields that need changing
Handle errors - Set up error notifications
