mrAlbertZwolleM
BuildShip2y ago
9 replies
mrAlbertZwolle

Is it a bug or do I do something wrong? Try to add parameters to a value field.

Maybe it's very easy, I really don't understand it...

See picture.

This is the return value:
'Lezer is: ${ctx["root"]["request"]["body"].namereader}'
+
Dit is het resultaat: ${ctx["root"]["request"]["body"].namereader}


This is the result:
Lezer is: ${ctx["root"]["request"]["body"].namereader}Dit is het resultaat: Albert


How can I add the body parameters to a value field?
#❓・buildship-help
Schermafbeelding_2024-03-14_om_15.22.10.png
Solution
In the first string, you'll require to add back ticks instead of single quotes ' '. Lezer is: ${ctx["root"]["request"]["body"].namereader} just like you did in second line. Then it will work.
Was this page helpful?