- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2016 03:05 PM
Hi,
Does anyone know if there is any ServiceNow API that allows an application to send messages to external server such as through https?
Thanks.
Solved! Go to Solution.
- Labels:
-
Integrations
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2016 09:01 AM
While I don't see any documentation on it, there is an API class called GlideHttpRequest(). You can find examples of it under System Defintion> Scripts Includes, in the RESTMessage and WbemHttpClient records.
Take a look and see if that helps.
I understand the GlideHttpRequest API is being expanded upon in future releases.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2016 06:36 PM
Can you provide some additional details on what you are trying to accomplish? Details (table names, catalog items, etc) are encouraged. Screen shots are always appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2016 08:46 AM
Thanks for the reply and help, Chunk.
In order to deliver information from I want my application on ServiceNow to connect to an external server (e.g., an corporate sever with public IP) through HTTPS or SSL socket. I saw ServiceNow outbound REST/SOAP web service, but it requires an external REST/SOAP web service on my corporate server in my case, correct? It will be nice if ServiceNow support generic outbound HTTP/HTTPS APIs while SSL socket seems a little bit too far.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2016 09:01 AM
While I don't see any documentation on it, there is an API class called GlideHttpRequest(). You can find examples of it under System Defintion> Scripts Includes, in the RESTMessage and WbemHttpClient records.
Take a look and see if that helps.
I understand the GlideHttpRequest API is being expanded upon in future releases.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2016 09:50 AM
Thanks, Chunk. This is very helpful.