I want to be able to send a 3rd party a notification when a customer places an order for a certain product so the 3rd party is aware that that particular product has sold.
Is this possible to automate?
I want to be able to send a 3rd party a notification when a customer places an order for a certain product so the 3rd party is aware that that particular product has sold.
Is this possible to automate?
Certainly! You can achieve this by setting up an automation workflow using Shopifyâs webhooks. Here are the steps you can guide the Shopify community member through:
Feel free to customize the response based on additional details or specific requirements the community member may have.
You should be able to use Flow for this.
Trigger: order placed
Condition: If Line item includes âxâ or âyâ
Action: send internal notification
I can send you a Flow export file for this as a base to start with if that helps,
That would be appreciated
Looks like I canât attach the file here so if you pm me your email I can send it over that way.
Can you send me an export file aswell? ![]()
Chat box wonât let me add the flow file here.
PM me with your email address and I can send you a basic import file, or you can also browse the available templates and customise from there.
I use the below variables to pull the order data into the email
Customer name: {{order.customer.displayName}}
Customer email: {{order.customer.email}}
Order Number: {{order.name}}
Products:
{% for lineItems_item in order.lineItems %}
Title: {{lineItems_item.name}}
SKU: {{lineItems_item.sku}}
Qty: {{lineItems_item.currentQuantity}}
{% endfor %}