I’m trying to set a workflow storage vale using the Operation “Store JSON”.
Shouldn’t I be able to have a value field as this ?:
{“name1”: {{data.name}} }
Are you seeing an error or is the value simply not being put into storage? {{data.name}}
may not resolve to valid JSON. You may need to use the jsonEncode
helper: {{jsonEncode data.name}}
.
Any additional information on the behavior that you’re seeing would be great.
Thank you,
Heath
That was it. Thanks.
1 Like