Redicom Help Center

campaign

campaign.id

Version 1.0

Returns the value of the id field of the campaign.

Input

{{ response.campaign.id }}

Output

1

campaign.title

Version 1.0

Returns the value of the title field of the campaign.

{% for item in response.campaigns %}
<h2>{{item.title|raw}}</h2>
{%
endfor %}

Input

{{ response.campaign.title }}

Output

Receba já o seu presente de boas vindas!

campaign.image

Version 1.0

Returns all of the line image in the campaign.

campaign.short_content

Version 1.0

Returns the value of the short_content field of the campaign.

{% for item in response.campaigns %}
<p>{{item.short_content|raw}}</p>
{%
endfor %}

Input

{{ response.campaign.short_content }}

Output

Deixe-nos o seu email e veja o presente que temos reservado especialmente para si. Boas compras.

campaign.content

Version 1.0

Returns the value of the content field of the campaign.

{% for item in response.campaigns %}
<p>{{item.content|raw}}</p>
{% endfor %}

Input

{{ response.campaign.content }}

Output

Deixe-nos o seu email e veja o presente que temos reservado especialmente para si. Boas compras.

campaign.discount

Version 1.0

Returns the value of the discount field of the campaign.

{% for item in response.campaigns %}
<span class="style4"> {{item.discount}}{{response.expressions.93|raw}}</span>
{% endfor %}

Input

{{ response.campaign.discount }}

Output

10%

campaign.url

Version 1.0

Returns the value of the url field of the campaign.

Input

{{ response.campaign.url }}

Output

index.php?id=122

campaign.type

Version 1.0

Returns the value of the type field of the campaign.

{% for item in response.campaigns if item.type %}
...
{% endfor %}

Input

{{ response.campaign.type }}

Output

welcome_gift

campaign.button_text

Version 1.0

Returns the value of the button_text field of the campaign.

{{item.button_text}}

Input

{{ response.campaign.button_text }}

Output

"Saiba mais"