- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-23-2016 01:37 PM
I am creating a new service in Service Catalog, the service workflow needs to retrieve data by calling company's internal REST API. How do I achieve that?
Solved! Go to Solution.
- Labels:
-
Integrations
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-23-2016 02:30 PM
Hi Jason,
Since ServiceNow is in the cloud, one of the following would need to be true, I believe:
1. The REST API service is exposed outside your company firewall, or the firewall allows outside connections in...
2. You have a midserver inside your network that ServiceNow can use to communicate with your network.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-23-2016 02:30 PM
Hi Jason,
Since ServiceNow is in the cloud, one of the following would need to be true, I believe:
1. The REST API service is exposed outside your company firewall, or the firewall allows outside connections in...
2. You have a midserver inside your network that ServiceNow can use to communicate with your network.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-24-2016 12:37 AM
Hello Jason,
after the connectivity issues are settled, like Van Tran mentioned,
you have to create an outbound REST message with the appropriate contents to call your companies REST service.
REST messages are created in the ServiceNow module with the same name.
More information can be found in the Wiki: Outbound REST Web Service - ServiceNow Wiki
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-24-2016 12:41 AM
We have several of these internal web service integrations. We are using Orchestration (Runbook) on a local MIDserver to make those calls for us and return the information to SN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-24-2016 07:19 AM
Thank you all for the reply.