We’re trying to post orders to picqer through Flow but this json format only sends orders with only one product, if it has anything more than two products in the order, the order won’t get posted to picqer(http request). What do we have to change?
{
“idcustomer”: null,
“deliveryname”: “{{order.customer.displayName}}”,
“deliveryaddress”: “{{order.shippingAddress.address1}}, {{order.shippingAddress.address2}}”,
“deliveryzipcode”: “{{order.shippingAddress.zip}}”,
“deliverycity”: “{{order.shippingAddress.city}}”,
“deliverycountry”: “{{order.shippingAddress.countryCodeV2}}”,
“invoicename”: “{{order.billingAddress.name}}”,
“invoiceaddress”: “{{order.billingAddress.address1}}, {{order.billingAddress.address2}}”,
“invoicezipcode”: “{{order.billingAddress.zip}}”,
“invoicecity”: “{{order.billingAddress.city}}”,
“invoicecountry”: “{{order.billingAddress.countryCodeV2}}”,
“products”: [
{% for lineItems_item in order.lineItems %}
{
“productcode”: “{{lineItems_item.variant.sku}}”,
“amount”: {{lineItems_item.quantity}}
}
{% endfor %}
]
}