Customer tags changed
The tags attached to a Shopify customer were changed.
This trigger fires when tags are added or removed from a customer account. It provides a customer object (with all of the customer's attributes such as name, email, et cetera), a list of tags that were added, and a list of tags that were removed.
Trigger properties
Customer
The affected customer. All customer properties (name, email, etc) are available.
Added tags
A string with a comma-separated list of the tags that were added to the customer.
Removed tags
A string with a comma-separated list of the tags that were removed from the customer.
Notes
This trigger will fire if a new customer is created in Shopify with tags attached.
Tags are provided as a comma-separated list, so if it's possible that a tag you care about may be added or removed alongside other tags, you should check for that tag with the includes
condition rather than the is equal to
condition.
Example use

Last updated