I'm trying to work with the setProperty function in order to edit a JSON body during the execution of a flow, here is the expression:
setProperty(X, 'Y','bla bla 123456789' )
while
- X is the json
- Y the property i want to modify
- 'bla bla 123456789' is the value
My question is: how can I replace '123456789' by a variable('ID') inside it, if I do the following thing
setProperty(X, 'Y','bla bla variables('ID')' )
It will take exactly what is written "variable('ID') and not the value of this variable !
any help ?