Mechanic is a development platform for Shopify. :)
The merchant who created this task uses another app for validating orders in bulk, resulting in a list of order numbers that should be captured. This task prompts the merchant for a list of order numbers, which Mechanic then captures one by one.
Runs when some text is submitted.
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.
{% capture newline %} {% endcapture %} {% assign order_numbers = event.data | split: newline %} {% for authorized_order in shop.orders.authorized %} {% capture order_number_string %}{{ authorized_order.order_number }}{% endcapture %} {% if order_numbers contains order_number_string %} { "action": { "type": "shopify", "options": [ "post", "/admin/orders/{{ authorized_order.id }}/transactions.json", { "transaction": { "kind": "capture" } } ] } } {% endif %} {% endfor %}