Jake
Jake

Reputation: 1

LIQUID TEMPLATE LANGUAGE Twilio Studio Variables

Does anyone know how I can assign liquid template language variables to widget variables?

{% assign name='{{widgets.send_and_reply_3.inbound.Body}}'%}

This does not seem to work. I have removed the '' and that does not work either. Thanks in advance!

Upvotes: 0

Views: 687

Answers (1)

philnash
philnash

Reputation: 73029

Twilio developer evangelist here.

When using widget variables within other liquid tags you don't need to include the { or } brackets. So this should work for you:

{% assign name = widgets.send_and_reply_3.inbound.Body %}

Upvotes: 0

Related Questions