- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2022 09:44 PM
Hi All,
Through rest message i am sending the payload like the below mentioned pic to the endpoint. Instead i need like once when the P1 incident got created the field value of ci, short description,,, should be sent to the endpoint dynamically. Can you please help me out for this.
Solved! Go to Solution.
- Labels:
-
Integrations
-
Multiple Versions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2022 12:24 AM
For that only I mentioned you need to create variable substitution
Did you check that?
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2022 09:55 PM
Hi nivethik,
In your BR, you can put the condition like below
if (priority == 1) {
payload["u_short_description"] = current.short_description.toString();
}
Mark my answer Correct and Helpful if it helped you in any way.
Regards,
Gayathri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2022 10:11 PM
Hi,
you can have after insert BR on incident table and use variable substitution to set the CI and short description
Variable substitution in outbound REST messages
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2022 11:36 PM
Thanks for your response.
i will try once
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2022 12:10 AM