Hi all, total newbie here. I have a webhook in my ecommerce platform setup perform an HTTP POST to pipedream when I have an order update event. I’d like to send an email out for a will call order when the status = " Ready for Pickup" do nothing for any other statuses. It’s not something the platform supports yet so trying to solve it here.
Status = steps.trigger.event.body.data.object.status
Email = steps.trigger.event.body.data.object.customer.email
Order Number = steps.trigger.event.body.data.object.id
Name = steps.trigger.event.body.data.object.customer.name
Send to = Email
Subject line = Your order {Order Number} is ready for pickup
Body = Hello {Name} your order {Order Number} is ready for pickup…blah, blah, blah.
Any help getting in the right direction is greatly appreciated.