Version 1.0
Returns the value of the order_number field of the order.
{{ response.order.order_number }}
1245
Version 1.0
Returns the value of the name field of the order.
{% for item in response.orders %}
<h2>{{item.name}}</h2>
{% endfor %}
{{ response.order.name }}
ST2014/001254
Version 1.0
Returns the value of the email field of the order.
{% for item in response.orders %}
<p>{{item.email}}</p>
{% endfor %}
{{ response.order.email }}
info@redicom.pt
Version 1.0
Returns the value of the created_at field of the order.
{% for item in response.orders %}
<span>{{item.created_at|date("Y-m-d")}}</span>
{% endfor %}
{{ response.order.created_at }}
2015-02-05 10:40:25
Version 1.0
Returns all of the line customer in the order.
Version 1.0
Returns all of the line discounts in the order.
Version 1.0
Returns the value of the fulfillment_status field of the order.
{{ response.order.fulfillment_status }}
1
Version 1.0
Returns the value of the fulfillment_status_label field of the order.
{% for item in response.orders %}
<p>{{item.fulfillment_status_label}}</p>
{% endfor %}
{{ response.order.fulfillment_status_label }}
Em Transito
Version 1.0
Returns the value of the financial_status field of the order.
{{ response.order.financial_status }}
1
Version 1.0
Returns the value of the financial_status_label field of the order.
{% for item in response.orders %}
<p>{{item.financial_status_label}}</p>
{% endfor %}
{{ response.order.financial_status_label }}
Pagamento efectuado
Version 1.0
Returns all of the line lines in the order.
Version 1.0
Returns all of the line billing_address in the order.
Version 1.0
Returns all of the line shipping_address in the order.
Version 1.0
Returns all of the line shipping_price in the order.
Version 1.0
Returns all of the line subtotal_amount in the order.
Version 1.0
Returns all of the line tax_amount in the order.
Version 1.0
Returns all of the line total_price in the order.
Version 1.0
Returns all of the line transactions in the order.
Version 1.0
Returns all of the line fulfillment in the order.