AJO Email not Parsing productListItems
Hello,
I'm trying to generate a Order Confirmation email and not getting the data from the productListItems - even in Test mode. My basic setup is the same as outlined in Adobe's help file.
{{#each context.journey.events.event_ID.productListItems as |product|}}
<table>
<tbody>
<tr>
<td><b>{{context.journey.events.event_ID.productListItems.name}}</b></td>
<td><b>{{context.journey.events.event_ID.productListItems.quantity}}</b></td>
<td><b>${{context.journey.events.event_ID.productListItems.priceTotal}}</b></td>
</tr>
</tbody>
</table>
{{/each}}
When the visitor goes through the flow, I get all other commerce related items but nothing in the productList. You can see from the image below, the "$" string literal proves the /each statement is looping through the 3 products in the list (so they are there) but there's no no data.

When I put the Journey is Test mode and Trigger the Event with the productList information (see below), I get the same thing - purchase data but nothing from the productsList.

What am I missing here? Can't figure out what's wrong.