Redicom Help Center

Documentation Objects fulfillment

fulfillment

fulfillment.tracking_company

Version 1.0

Returns the value of the tracking_company field of the fulfillment.

Input

{{ response.fulfillment.tracking_company }}

Output

DHL

fulfillment.tracking_number

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 %}

Input

{{ response.fulfillment.tracking_number }}

Output

3583146394

fulfillment.tracking_url

Version 1.0

Returns the value of the tracking_url field of the fulfillment.

Input

{{ response.fulfillment.tracking_url }}

Output

http://www.dhl.pt/pt/expresso/localizar_envios.html?AWB=3583146394&brand=DHL

fulfillment.receipt

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 %}

Input

{{ response.fulfillment.receipt }}

fulfillment.return_options

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 %}

Input

{{ response.fulfillment.return_options }}

Output

array(id, title)

fulfillment.return_description

Version 1.0

Returns the value of the return_description field of the fulfillment.

Input

{{ response.fulfillment.return_description }}