Auto-tag new orders that have tips, with Mechanic.

Mechanic is a development and ecommerce automation platform for Shopify. :)

Auto-tag new orders that have tips

This task watches for newly-paid orders, and tags any that include a customer tip, using the tag of your choice. :)

Runs Occurs whenever an order is paid. Configuration includes tag for orders that have a tip.

15-day free trial – unlimited tasks

Developer details

Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Shopifolks, 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.

(By the way, have you seen our documentation? Have you joined the Slack community?)

Open source
View on GitHub to contribute to this task
Subscriptions
shopify/orders/paid
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
tag for orders that have a tip (required)
Code
{% if event.preview %}
  {% capture order_json %}
    {
      "admin_graphql_api_id": "gid://shopify/Order/12345",
      "tags": "",
      "line_items": [
        {
          "id": 2345678901,
          "requires_shipping": false,
          "fulfillment_status": null,
          "tip": {
            "payment_method": "shopify_payments",
            "payment_gateway": "shopify_payments"
          }
        }
      ]
    }
  {% endcapture %}

  {% assign order = order_json | parse_json %}
{% endif %}

{% assign tip_line_items = order.line_items | where: "tip" %}

{% if tip_line_items != empty %}
  {% action "shopify" %}
    mutation {
      tagsAdd(
        id: {{ order.admin_graphql_api_id | json }}
        tags: {{ options.tag_for_orders_that_have_a_tip__required | json }}
      ) {
        userErrors {
          field
          message
        }
      }
    }
  {% endaction %}
{% endif %}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more