How to apply if-then logic in liquid for dynamic content on Shopify flow?

Hi WrdMax,

You should be able to write a regular if statement inside the HTTP request body, like

{% if order.customerJourneySummary.lastVisit.referralCode %}{{order.customerJourneySummary.lastVisit.referralCode}}{% else %}{{order.customerJourneySummary.firstVisit.referralCode}}{% endif %}

Just watch out for whitespace and quotes and stuff depending on how your request is being formatted.

Hope that helps!