Post some value from SNOW to external web page
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2024 11:05 PM - edited 11-07-2024 01:07 AM
Hi Everyone,
I want to post some value from SNOW to external web page and print that value on external web page.
What functionality should I use to print data on this page.
Thanks in advance
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2024 11:13 PM
You need to setup an integration between the two systems. You can use ServiceNow's Table API to directly get the JSON data(try REST API Explorer in ServiceNow) or for custom data output you can:
- Use ServiceNow's REST Message functionality to send data to the external web page.
- Create a REST Message record in ServiceNow and configure it to send an HTTP POST or GET request to your external web page's endpoint.
- Ensure that your external web page has an endpoint that can accept and print the data.
Use JSON to send the data and parseJSON at external server to iterate and print the data.