Item order created & Placed/Paid an order
These events fire after a customer has finished placing an order on your store.
An order can be placed in the following ways:
- Automatically by a customer who is shopping on your store
- Manually through the Orders section of your Shopify account
After an order is placed, Shopify sends information about the order over to your Drip account. These events get recorded and displayed on the person's activity timeline. Click + to show more information about each event.
Item order created is a Drip generated event that makes it easier for users to dynamically insert event data into marketing emails. This includes the name, title, quantity, and value of the items that make up the order:
Placed/Paid an order is the Shopify event that Drip uses to parse information from the line_items property to make those bits of information more accessible through Drip's Item order created event:
To automate with these events in a Workflow or Rule, set up a Trigger with either the Item order created
or Placed/Paid an order
event:
You can use these events side-by-side followed by an action to apply a Tag and a one-off email to thank a customer for their purchase.
Only the first event that comes is available in liquid. Having multiple triggers side-by-side is equivalent to “or” operators (either event A OR event B OR event C).
Event properties useful in one-off emails
-
Item order created
-
{{ event.title }}
returns the title of the product in the order -
{{ event.quantity }}
returns the quantity of the item ordered -
Placed/Paid an order
-
{{ event.items }}
returns the raw code (JSON) which holds the data about the order
Item order cancelled & Canceled an order
These events fire when an order is cancelled in Shopify. A Shopify account admin can cancel an order under the Orders section.
An order can be cancelled by the following method:
-
Shopify account admin manually cancels the order
After an order is cancelled, these events get recorded and displayed on the person's profile. Click + to show more information about each event.
Item order cancelled is a Drip-generated event that makes it easier for users to dynamically insert event data into marketing emails. This includes the name, title, quantity, and value of the items that make up the order:
Canceled an order is the Shopify event that Drip uses to parse information from the line_items property to make those bits of information more accessible through Drip's Item order created event:
To automate with these events in a Workflow or Rule, set up a Trigger with the Item order cancelled
or Canceled an order
event:
Event properties that can be used in an email:
-
Item order cancelled
-
{{ event.title }}
returns the title of the product in the order -
{{ event.quantity }}
returns the quantity of the item ordered -
{{ event.order_id }}
returns order's identification number -
Order cancelled
-
{{ event.items }}
returns the raw code (JSON) which holds the data about the order