Version 1.0
Returns the value of the id field of the item.
{{ response.item.id }}
2
Version 1.0
Returns all of the line product in the item.
Version 1.0
Returns all of the line variant in the item.
Version 1.0
Returns the value of the title field of the item.
{% for item in response.orders %}
{% for item2 in item.lines %}
<p class="name"> {{item2.title}}</p>
{% endfor %}
{% endfor %}
{{ response.item.title }}
Balloon Shirt - Medium
Version 1.0
Returns all of the line price in the item.
Version 1.0
Returns all of the line line_price in the item.
Version 1.0
Returns all of the line old_price in the item.
Version 1.0
Returns the value of the quantity field of the item.
<span>{{response.item.quantity}}</span>
{{ response.item.quantity }}
4
Version 1.0
Returns the value of the grams field of the item.
{% for item in response.orders %}
{% for item2 in item.lines %}
<p>{{item2.grams}}</p>
{% endfor %}
{% endfor %}
{{ response.item.grams }}
0.8
Version 1.0
Returns the value of the sku field of the item.
{% for item in response.orders %}
{% for item2 in item.lines %}
<p>REF:<span>{{item2.sku}}</span></p>
{% endfor %}
{% endfor %}
{{ response.item.sku }}
154000M005
Version 1.0
Returns the value of the vendor field of the item.
<span>{{response.item.vendor}}</span>
{{ response.item.vendor }}
Redicom
Version 1.0
Returns the value of the requires_shipping field of the item.
<span>{{response.item.requires_shipping}}</span>
{{ response.item.requires_shipping }}
1
Version 1.0
Returns the value of the variant_id field of the item.
<span>{{response.item.variant_id}}</span>
{{ response.item.variant_id }}
1233
Version 1.0
Returns the value of the product_id field of the item.
<span>{{response.item.product_id}}</span>
{{ response.item.product_id }}
1233
Version 1.0
Returns all of the line discount in the item.
Version 1.0
Returns the booelan of the egift field of the item.
{{ response.cart.egift}}
1