Hi all,
The XML we are need to send has nested line items and the source data sends line items as a list. We can use formatter (Utilities > Line Itemizer) to separate them out but we are struggling to implement them in the nest format required because it seems not all actions support Zapier's line items functionality.
Our XML needs to follow this rough structure:
<ITEM>
<SKU>2345</SKU>
<QTY>3</QTY>
<Price>200</Price>
<LineNumber>1</LineNumber>
</ITEM>
<ITEM>
<SKU>1235</SKU>
<QTY>2</QTY>
<Price>300</Price>
<LineNumber>2</LineNumber>
</ITEM>
<ITEM>
<SKU>1555</SKU>
<QTY>2</QTY>
<Price>400</Price>
<LineNumber>3</LineNumber>
</ITEM>
At the moment, all we are able to do is:
<ITEM>
<SKU>2345, 1235, 1555</SKU>
<QTY>3, 2, 2</QTY>
<Price>200, 300, 400 </Price>
<LineNumber>1, 2, 3</LineNumber>
</ITEM>
Any ideas how we might achieve this?