Redicom Help Center

tags

tags.title

Version 1.0

Returns the value of the title field of the tags.

{% for tag in response.product.tags %}
<div class="flag" >{{tag.title}}</div>
{% endfor %}

Input

{{ response.tags.title }}

Output

Novidade

tags.color

Version 1.0

Returns the value of the color field of the tags.

{% for tag in response.product.tags %}
<div class="flag" style="background: {{tag.color}};">{{tag.title}}</div>
{% endfor %}

Input

{{ response.tags.color }}

Output

#CC6600