Skip to content

Render a Template

CSV Example

JSON Example

[
    {% for item in data.stock %}
        {
            "sku": "{{ item.sku }}",
            "quantity": {{ item.qty|number_format(2, '.', '') }},
            "location": "{{ item.location }}"
        }{% if loop.last == false %},{% endif %}
    {% endfor %}
]