Use property value in request of next request (JSON)
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2020
06:31 AM
06-04-2020
06:31 AM
Use property value in request of next request (JSON)
I have some values stored in a properties step.
Content of "properties":
ParameterA: Test 1
ParameterB: Test 2
I want to use the value of "ParameterB" ("Test 2" in this case) as input of my JSON request (value should be used in part of body) of the next rest service call.
I have tried this code:
"parameterNewJSONRequest": "${#properties#ParameterB}"
Unfortunately my value is not correctly synced.
Can someone help me?
Thanks in advance!
Regards,
Jan
Solved! Go to Solution.
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2020
06:43 AM
06-04-2020
06:43 AM
Question can be closed. Have found the issue.
Should remove the first #character
Instead of using "${#properties#ParameterB}", I should use "${properties#ParameterB}"
