Trickle Docs
  • Trickle
  • Getting started
  • Frequently asked questions
  • Triggers
    • Scheduled trigger ready
    • Customer tags changed
    • Product tags changed
    • Order cancelled (deprecated)
  • Actions
    • Schedule trigger
    • Add order line item
    • Send advanced HTTP request (deprecated)
  • Extras
    • Hooks
  • Privacy Policy
Powered by GitBook
On this page
  • Trigger properties
  • Notes
  • Example use
  1. Triggers

Customer tags changed

The tags attached to a Shopify customer were changed.

PreviousScheduled trigger readyNextProduct tags changed

Last updated 3 years ago

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

Name
Description

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

Detect the addition of a "VIP" tag to a customer, and perform a corresponding action.