How to create incident from another ServiceNow instance with rest

Поделиться
HTML-код
  • Опубликовано: 8 янв 2025

Комментарии • 60

  • @SAASWithServiceNow
    @SAASWithServiceNow  6 лет назад

    Guys- Please Subscribe for channel and let me know what else you are looking to learn.

  • @JotinderSingh1988
    @JotinderSingh1988 3 года назад

    Super video! I applauded for ₹40.00 👏

  • @Missmmmmmmmmmm
    @Missmmmmmmmmmm 10 месяцев назад

    you're amazing, i'm learning so much with your channel thanks!!!!

  • @ashitpoojary1049
    @ashitpoojary1049 4 года назад +2

    My left ear enjoyed this video!

    • @SAASWithServiceNow
      @SAASWithServiceNow  4 года назад

      Sorry about that.
      Our Website: www.saaswithservicenow.in
      Our Facebook Page : facebook.com/saaswithservicenow
      Our Discord: discord.gg/mcevNeE

  • @wahid4440
    @wahid4440 5 лет назад +1

    Hatts Off Man .. This video is so good ! Thanks for sharing this with us!

  • @sandhyadomakonda2051
    @sandhyadomakonda2051 2 года назад

    very good explanation ..Thank you so much..

  • @jerryjohn257
    @jerryjohn257 3 года назад

    Thanks for all your efforts.

  • @ramjisingh2111
    @ramjisingh2111 6 лет назад +1

    Really helpful video

  • @MarekFilaTri
    @MarekFilaTri 4 года назад

    Great Video, it really helped mi start off with the integration now that i can do POST based of this information i can do Update as well also i need to get the Bidirectional going

  • @Anilsharma-vo2nx
    @Anilsharma-vo2nx 5 лет назад +1

    Thanx sir....very helpful

  • @tejaswanipendoti2707
    @tejaswanipendoti2707 3 года назад

    Can you please suggest the way if we are upgrading to newer version in real time scenarios what are the steps we need to take up.skipped records.review changes ....please create a demo on upgrading instance on your existing customisations for the Quebec version

  • @derpinolastnamed198
    @derpinolastnamed198 3 года назад

    I found out this video googling and then is being linked from service now forum too. I just need to do a simple get/post to the api to open an incident. Is there a way to do sow? ServiceNow documentation is so confusing.

  • @BaqarRizvi
    @BaqarRizvi 6 лет назад +2

    Really nice tutorial very helpful !! Volume need to be louder or a external microphone will make your recording better.

  • @ismailssk
    @ismailssk 4 года назад +2

    Very good video. easily understood and able to implement as well. Its wokring.
    I struggled a little bit with - request.setRequestBody("{\"short_description\":\"" + title + "\",\"impact\":\"3\"}");
    So to avoid string framing issues, here is an easy approach.
    var title = current.short_description.toString();
    var description = current.description.toString();
    var category = current.category.toString();
    var contact_type = current.contact_type.toString();
    var myObj = {
    "short_description": title,
    "description" : description,
    "category" :category,
    "contact_type":contact_type
    };
    request.setRequestBody( JSON.stringify(myObj) );

  • @kishored8336
    @kishored8336 6 лет назад +2

    Hi , Can i expect any updates on Bidirectional process.once i update the record in ABC it should reflect same changes in XYZ .

    • @NeerajYadav-gm5bt
      @NeerajYadav-gm5bt 5 лет назад

      Are you able to find the bi-directional solution ?

    • @naushiali2651
      @naushiali2651 5 лет назад

      let me know please. if someone get the bidirectional process

  • @Sam-cq5bw
    @Sam-cq5bw 5 лет назад

    Please continue to upload such videos using a good microphone..Thanks

  • @saiyeswanth1752
    @saiyeswanth1752 Год назад

    401 Authorization issue vastundhi user credentials correct ga echanu what to do then

  • @PREMKUMAR-yj2fm
    @PREMKUMAR-yj2fm 6 лет назад +1

    Is there is any method to make the Incident Number as same in both the Instance.

    • @SAASWithServiceNow
      @SAASWithServiceNow  6 лет назад

      Incidents are random numbers which assign numbers automatically. Is there any reason you want to do that. You can push the number as well but this will give you a conflict if you will have another same number. This is not recommended.

    • @PREMKUMAR-yj2fm
      @PREMKUMAR-yj2fm 6 лет назад

      SAASWITHSERVICENOW incase if we need to update means, how it will update once we update in one instance.

    • @SAASWithServiceNow
      @SAASWithServiceNow  6 лет назад +1

      This is a one directional example. I will be posting on bidirectional in which it will update the records on the both the instances whichever gets updated. Please wait I will upload for sure.

    • @kishored8336
      @kishored8336 6 лет назад +1

      @@SAASWithServiceNow Hi Gaurav, we are waiting for you REST API bidirectioanl.

    • @krishnagoudmettu7940
      @krishnagoudmettu7940 5 лет назад

      Hi gaurav how and where do we evaluate inbound rest api request servicenow

  • @royalhemu6655
    @royalhemu6655 5 лет назад

    Can you please send the post code for the dynamic update of dataa?

  • @gabrz75
    @gabrz75 5 лет назад

    Hi, can you make a video of an inbound REST request based on Token Authentication, using an external token provider (like Auth0).
    So I can authenticate the REST request with my username and Active Directory password. (instead of username servicenow password)

  • @raghuram4381
    @raghuram4381 4 года назад +1

    Can you please explain if the incident contains attachment then how to send attachments?

  • @abikp2165
    @abikp2165 5 лет назад +1

    Could please someone help me to understand what is the difference between ebonding and REST API ??

    • @SAASWithServiceNow
      @SAASWithServiceNow  5 лет назад

      Hi, Ebonding is integrating Bidirectionally two systems. REST API is a way to construct web services to connect the system.

  • @kishored8336
    @kishored8336 6 лет назад

    Nice one, it's a great thing, So How can we update that created record. means you created One incident from ABC---> XYZ after created , i want to update some field values , once i update the record in ABC it should reflect same changes in XYZ , is it Possible?

    • @SAASWithServiceNow
      @SAASWithServiceNow  6 лет назад

      Yes, that is possible. You can fetch the incident number from another instance and save it on primary instance and then with the help of rest you can update

    • @kishored8336
      @kishored8336 6 лет назад

      @@SAASWithServiceNow its my humble request, can you please give a vedio , I am looking for this solution. How to do. What is the script I have to follow here.

    • @SAASWithServiceNow
      @SAASWithServiceNow  6 лет назад +1

      HI @@kishored8336 Let me post a video by this Sunday. Busy time but will try my best

    • @kishored8336
      @kishored8336 6 лет назад

      @@SAASWithServiceNow reply I m glad with your reply, I will wait for your vedio. It will be very helpful for me and others

    • @kishored8336
      @kishored8336 6 лет назад

      @@SAASWithServiceNow Hi , we are waiting for your updates , can you please on Update REST API bidirectional

  • @divyasoorada8139
    @divyasoorada8139 5 лет назад +1

    Can you please tell me why username & password are given in the script?

    • @SAASWithServiceNow
      @SAASWithServiceNow  5 лет назад

      Hi Divya, can you explain your question?

    • @divyasoorada8139
      @divyasoorada8139 5 лет назад

      @@SAASWithServiceNow What is the use of providing username & password in the BR script? I Wanted to know what happens if we do not provide any username & password in the BR script?

    • @SAASWithServiceNow
      @SAASWithServiceNow  5 лет назад +1

      Divya Soorada This is username and password of another instance. When you will create incident , this BR will run and do API call to another instance.

    • @divyasoorada8139
      @divyasoorada8139 5 лет назад +1

      @@SAASWithServiceNowyes. I see you created a user and gave his credentials here.. can we give any of the user's credentials in another instance?

    • @SAASWithServiceNow
      @SAASWithServiceNow  4 года назад

      Yes but it should have rest and table access.

  • @kishorbhat
    @kishorbhat Год назад

    Click noice is nice can you increase the volume of click sound so it can be good for our ears 😂😂

  • @absalomlefifi8549
    @absalomlefifi8549 4 года назад

    There is no sound

    • @SAASWithServiceNow
      @SAASWithServiceNow  4 года назад

      Sorry, But I dont hear that issue from other users. Can you check volume.

  • @dhruvbluff
    @dhruvbluff 6 лет назад

    Mouse click is very annoying while watching video.