Post some value from SNOW to external web page

Abhijit Das7
Tera Expert

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

Deepak Negi
Mega Sage
Mega Sage

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.