- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:09 AM
setRequestBody(String body)
When you set the body content using this method, variables in the body are not substituted for parameters from the REST message function record.
You must explicitly define all values within the REST message body.
Please explain me the last line because i haven't set any content body in my rest message still it is working . so what does last line say ..??
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:14 AM
It means that the full body message you specifying will be set. Some of the functions allow for variable substitution marked with ${} syntax. setRequestBody() allows you to completely overwrite this and send a body you define.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:14 AM
It means that the full body message you specifying will be set. Some of the functions allow for variable substitution marked with ${} syntax. setRequestBody() allows you to completely overwrite this and send a body you define.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:38 AM
Thank You Kieran , got it.