Creating a Restful API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-06-19 05:32 PM
------------------------------
Ken Exton
Software Engineer
Harris
America/New_York
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-06-19 01:06 PM
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-06-19 01:15 PM
------------------------------
Ken Exton
Software Engineer
Harris
America/New_York
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
16-07-19 01:19 PM
In our org. we needed to allow and give special roles to the user to be able use API (SOAP etc.) as well some special access to speific tables.
Utility HTTP Request (GET) was working OK as well, at least for getting ticket attachments information. For work with the tickets i suggest using SOAP webservice.
------------------------------
Pavel Král
RPA Specialist
MANN+HUMMEL Service s.r.o
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-11-19 11:38 PM
And then need another unique when creating the second ticket.
The error message is like this:The "Unique ID" provided is not unique and was used in a previous webservice transaction
I am able to generate the next unique ID, but not sure how to reset/revoke the ServiceNow API session.
------------------------------
F L
Tech
America/New_York
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
27-11-19 07:45 AM
can you post some link to documentation about REST and SNOW? We did a project to integrate with SNOW but we used SOAP web service calls which worked fine. Not aware there would be a REST implementation.
Regards,
Zdenek
------------------------------
Zdeněk Kabátek
Head of Professional Services
NEOOPS
Europe/Prague
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
28-11-19 06:35 AM
Hi,
no in our case using SOAP to create a ticket , there is no need for unique ID as the ID wil lbe return from the SOAP action. So if we use create ticket, the Sys ID is return.
Did you check the manbals for BluePrism how to set-up SOAP via WSDL? like https://myinstance.service-now.com/incident.do?WSDL (incident.do can be supplement with any table name you are using in SNOW) But you will need some account setup with access to these WSDL files.
------------------------------
Pavel Král
RPA Specialist
MANN+HUMMEL Service s.r.o
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-11-19 11:21 AM
Dim request As WebRequest = WebRequest.Create(REST_URI)
request.Credentials = new NetworkCredential(SNOW_Username, SNOW_Password)
request.Method = "GET"
Dim response As WebResponse = request.GetResponse
Dim responseStream As IO.Stream = response.GetResponseStream
Dim sr As New IO.StreamReader(responseStream)', Text.Encoding.UTF32)
resultData = sr.ReadToEnd
Oh, that's a post from April.
------------------------------
Andrzej Kaczor
RPA Dev
Arla Foods Ltd.
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-12-19 04:10 PM
https://portal.blueprism.com/system/files/documents/v6.4%20User%20Guide%20-%20Web%20APIs_2.pdf
They make it very easy to consume external REST services, and support most common authentication mechanisms (Basic, Token , OAuth)
------------------------------
Chris Hogan
Senior Ecosystem Architect
Blue Prism
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-12-19 05:01 PM
Yeah we've already read through it and can use this 😊
------Original Message------
If you are on Blue Prism v6.4 or later you should take a look at Web APIs. Info can be found here:
https://portal.blueprism.com/system/files/documents/v6.4%20User%20Guide%20-%20Web%20APIs_2.pdf
They make it very easy to consume external REST services, and support most common authentication mechanisms (Basic, Token , OAuth)
------------------------------
Chris Hogan
Senior Ecosystem Architect
Blue Prism
------------------------------
