No video

NOWCommunity Live Stream - API Adventures - Scripted REST APIs

  Рет қаралды 33,551

ServiceNow Community

ServiceNow Community

Күн бұрын

Scripted REST APIs are a very powerful and flexible way to allow third party systems to securely interact with your ServiceNow data. They offer the ability to have total control over the inputs, logic, and outputs of the integration. Watch this video and learn the basics of scripted REST APIs.
Episode topics include:
* Introduction to REST APIs
* Advantages of scripted REST APIs
* Building a scripted REST API
* Building multiple REST resources
* Testing your scripted REST APIs
Code snippets shown in this video are available at: github.com/chu...
References:
* Learn JavaScript on the Now Platform - bit.ly/sn-learn-js
* ServiceNow Developer Site - developer.serv...
* ServiceNow Developer meetups - meetup.com/pro...
* Book: No-Code Apps For Dummies - bit.ly/sn-ncafd
* Docs: Scripted REST APIs - docs.serviceno...
* Docs: Scripted REST APIs good practices - docs.serviceno...
Join the discussion on the community: community.serv...
Community Live Stream aires live each Monday and Thursday at 2PM UTC.

Пікірлер: 36
@Aryanshaik
@Aryanshaik 4 жыл бұрын
That's great Chuck! Difficult topic but explained in very simple way. You are star!!! Thank you. All the best for your future videos on Integrations and other topics.
@ChuckTomasi
@ChuckTomasi 4 жыл бұрын
Thank you. I wish I had more time on this one. I may have to mark a "Part 2". I feel there is so much more to cover about scripted REST APIs.
@akashk961
@akashk961 4 жыл бұрын
@@ChuckTomasi Interact with us for a couple of minutes in every live stream, will be fun!! Haha
@anubhavprakash1145
@anubhavprakash1145 3 жыл бұрын
@@ChuckTomasi For some reason I used to be scared of the scripted REST API but after watching this video it seems manageable. Thanks a lot , you have always been a guiding force for so many of us working on ServiceNow development.
@maciejzmudczynski4691
@maciejzmudczynski4691 2 жыл бұрын
13:31 Begin
@cerberuzmachina3884
@cerberuzmachina3884 3 жыл бұрын
The best in the game. Your videos are great, Chuck. Thank you.
@ChuckTomasi
@ChuckTomasi 3 жыл бұрын
Thank you for your kind words.
@ALBERTORAYGOSA
@ALBERTORAYGOSA 3 жыл бұрын
I love your energy Chuck!
@ChuckTomasi
@ChuckTomasi 3 жыл бұрын
Thanks
@mrdjpeacock
@mrdjpeacock 2 жыл бұрын
Thanks for the video! Informative and engaging.
@manfrombritain6816
@manfrombritain6816 2 жыл бұрын
brilliant vid, give this man a raise
@JeffSchodde
@JeffSchodde 2 жыл бұрын
Thanks Chuck! I needed this today!
@kurksen
@kurksen Жыл бұрын
You awesome Chuck} I really love your tutorials..
@ChuckTomasi
@ChuckTomasi Жыл бұрын
Thank you. I'm glad you find these useful.
@kedarhatkar
@kedarhatkar 3 жыл бұрын
Can to tell me how to pull data from servicenow to excel/powerBi
@BrazNow
@BrazNow 3 жыл бұрын
I am trying to create an outbound call to a microsoft api. However, in the endpoint field, servicenow does not accept all my URL with parameters. When trying to add the query params he apparently failed to authenticate, but one of these params is just my token. Do you know the reason for this?
@anandvk9156
@anandvk9156 2 жыл бұрын
Thanks Chunck.. One query, what if we need to get all the data's which are all available in the Incident Table?? Only max of 10 data i can able to get as a response.
@ChuckTomasi
@ChuckTomasi 2 жыл бұрын
The REST API Explorer will limit you, but the scripted REST API will not. The concern about getting a lot of data (e.g. the entire incident table) becomes a matter of time to get the response and processing a very large payload. For that, you should consider pagination to get a page of content at a time. For example, 50 records, then another 50. With an incoming scripted REST API you can put parameters for the start/count and then use the GlideRecord method chooseWindow() to get just that page of content. For outbound REST services, consider using a data stream to get paginated data from another service.
@williamstorey5024
@williamstorey5024 2 жыл бұрын
how do i create the developer account that you mentioned? so that i can get access to the api. its not showing up in my snow. sorry im new to snow and was given no proper training lol.
@ChuckTomasi
@ChuckTomasi 2 жыл бұрын
Hi William, You can go to developer.servicenow.com and get your own personal developer instance to experiment and try things. Good luck!
@williamstorey5024
@williamstorey5024 2 жыл бұрын
@@ChuckTomasi thank you sir! I will check it out.
@122004nilanjan
@122004nilanjan 3 жыл бұрын
Hello ChucK . I am trying to dot walk the location field in the CMDB table somehow I am failing to get the report through to SPlunk.
@ChuckTomasi
@ChuckTomasi 3 жыл бұрын
Sounds like a great question for the community. Have you posted you issue there? community.servicenow.com
@arskeliss6931
@arskeliss6931 Жыл бұрын
This recording still has actuality in 2022 as well.
@akashk961
@akashk961 4 жыл бұрын
This is cheating Chuck, it literally took me a month to master this stuff 4 years back!! Aaahhh
@ChuckTomasi
@ChuckTomasi 4 жыл бұрын
Experience is the comb that life gives you after you lost all your hair
@maciejzmudczynski4691
@maciejzmudczynski4691 2 жыл бұрын
24:10 practice
@edwinfeliz9986
@edwinfeliz9986 2 жыл бұрын
I don't see the rest api setting on myside would this be only for dev account?
@ChuckTomasi
@ChuckTomasi 2 жыл бұрын
I'm not clear what you mean by not seeing the REST API setting on your side. Can you be a bit more specific?
@edwinfeliz9986
@edwinfeliz9986 2 жыл бұрын
@@ChuckTomasi Yes, I am trying to connect to the rest API just like you when I search for rest API on the search bar. I am not getting anything?
@ChuckTomasi
@ChuckTomasi 2 жыл бұрын
Ensure you have admin role. If it still doesn't show, check for any disabled modules.
@edwinfeliz9986
@edwinfeliz9986 2 жыл бұрын
@@ChuckTomasi if I don’t have admin role, I can’t have access to the api am I understand this right?
@ChuckTomasi
@ChuckTomasi 2 жыл бұрын
@@edwinfeliz9986 By default, you need either admin or web_service_admin to access the System Web Services menu. The REST API Explorer module additionally requires the rest_api_explorer menu. So technically, you do NOT need admin if you have both those other roles to access the REST API Explorer.
NOWCommunity Live Stream - Code Decoded - Service Portal widgets part 1
55:03
ServiceNow Community
Рет қаралды 31 М.
Look at two different videos 😁 @karina-kola
00:11
Andrey Grechka
Рет қаралды 15 МЛН
艾莎撒娇得到王子的原谅#艾莎
00:24
在逃的公主
Рет қаралды 51 МЛН
Unveiling my winning secret to defeating Maxim!😎| Free Fire Official
00:14
Garena Free Fire Global
Рет қаралды 6 МЛН
NOWCommunity Live Stream - API Adventures - TableUtils
53:13
ServiceNow Community
Рет қаралды 2 М.
NOWCommunity Live Stream - API Adventures - Inbound Integration Logging
34:08
ServiceNow Community
Рет қаралды 2,6 М.
What is Direct and Recordless Outbound REST in ServiceNow | 4MV4D | S01L11
26:35
How to parse JSON response in REST API | 4MV4D | S01L13
31:43
SAASWITHSERVICENOW
Рет қаралды 24 М.
What is a REST API?
9:12
IBM Technology
Рет қаралды 1,5 МЛН
How To Call a REST API In Java - Simple Tutorial
29:14
Coding with John
Рет қаралды 268 М.
Explore ServiceNow API
17:55
TechWithPri
Рет қаралды 7 М.
Scripted REST APIs - Implementation - Learn Integrations on the Now Platform
8:05
What is Outbound REST Integration in ServiceNow? | Share The Wealth
29:54
GlideFast Consulting
Рет қаралды 12 М.
Platform Academy Session #8: Subscription Management
1:00:21
ServiceNow Community
Рет қаралды 15 М.