Auto-archive orders after fulfillment, with Mechanic.

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

Auto-archive orders after fulfillment

Just as it says. :) Archives orders immediately upon fulfillment, or after a configurable number of days.

Runs Occurs whenever an order is fulfilled. Configuration includes days to wait after fulfillment before archiving.

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/fulfilled{% if options.days_to_wait_after_fulfillment_before_archiving__number %}+{{ options.days_to_wait_after_fulfillment_before_archiving__number }}.days{% endif %}
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
days to wait after fulfillment before archiving (number)
Code
{% if options.days_to_wait_after_fulfillment_before_archiving__number %}
  {% if options.days_to_wait_after_fulfillment_before_archiving__number <= 0 %}
    {"error": "'Days to wait after fulfillment before archiving', if set, must be greater than zero. :)"}
  {% endif %}
{% endif %}

{% if event.preview %}
  {% assign order = '{"admin_graphql_api_id": "gid://shopify/Order/1234567890","closed_at":null}' | parse_json %}
{% else %}
  {% assign order = order.reload %}
{% endif %}

{% if order.closed_at == blank %}
  {% action "shopify" %}
    mutation {
      orderClose(
        input: {
          id: {{ order.admin_graphql_api_id | json }}
        }
      ) {
        order {
          closed
          closedAt
        }
        userErrors {
          field
          message
        }
      }
    }
  {% endaction %}
{% endif %}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more