Shopify Order flow error-
Unable to create the order in NetSuite for the Shopify order ,Failed to save record because Gift Certificate From, Recipient Name, and Recipient Email are required.
I updated the respective mapping in the Celigo flow to resolve the above error. However, in some orders, the Recipient Email field is empty or not present in the JSON.
For this condition, I want to map the customer.email
field using the following logic:
{{#each line_items[*].properties}}
{{#compare name "==" "Email"}}
{{value}}
{{else}}
{{customer.email}}
{{/compare}}
{{/each}}
But customer.email
is not being printed, and it returns a blank value.
Can anyone please help with this?