Mechanic is a development platform for Shopify. :)
Useful for flagging orders for manual follow-up, for stores that see fraudulent activity in which billing and shipping address are not the same.
Runs when an order is created. Configuration includes order tag to add.
Useful for flagging orders for manual follow-up, for stores that see fraudulent activity in which billing and shipping address are not the same.
This task auto-tags orders, as they're created, if their billing and shipping addresses do not match. It ignores orders that do not have a billing address, or that do not have a shipping address.
Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Gurus, everybody.
That’s why we make it easy to configure automation without code, why we make it easy to tweak the underlying code once tasks are installed, and why we publish it all here for everyone to learn from.
{% if event.preview %} {% capture order_json %} { "admin_graphql_api_id": "gid://shopify/Order/12345", "shipping_address": { "first_name": "Foo" }, "billing_address": { "first_name": "Bar" } } {% endcapture %} {% assign order = order_json | parse_json %} {% endif %} {% if order.shipping_address != blank and order.billing_address != blank and order.shipping_address != order.billing_address %} {% action "shopify" %} mutation { tagsAdd( id: {{ order.admin_graphql_api_id | json }} tags: {{ options.order_tag_to_add__required | json }} ) { userErrors { field message } } } {% endaction %} {% endif %}