Version 1.0
Returns the value of the tracking_company field of the fulfillment.
{{ response.fulfillment.tracking_company }}
DHL
Version 1.0
Returns the value of the tracking_number field of the fulfillment.
{% for item in response.orders %}
<div><p>{{item.fulfillment.0.tracking_number}}</p></div>
{% endfor %}
{{ response.fulfillment.tracking_number }}
3583146394
Version 1.0
Returns the value of the tracking_url field of the fulfillment.
{{ response.fulfillment.tracking_url }}
http://www.dhl.pt/pt/expresso/localizar_envios.html?AWB=3583146394&brand=DHL
Version 1.0
Returns the value of the receipt field of the fulfillment.
{% for item in response.orders %}
<a href="{{item.fulfillment.0.receipt}}" target='_blank'> link </a>
{% endfor %}
{{ response.fulfillment.receipt }}
Version 1.0
Returns the value of the return_options field of the fulfillment.
{% for item in selectedOrder.fulfillment.0.return_options %}
<input type="radio" value='{{item.id}}' >
<p class="style2"> {{item.title|raw}}</p>
{% endfor %}
{{ response.fulfillment.return_options }}
array(id, title)
Version 1.0
Returns the value of the return_description field of the fulfillment.
{{ response.fulfillment.return_description }}