I am looking for a way to Execute REST integration via script Includes
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2024 01:20 PM
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2024 02:07 PM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2024 02:21 PM
var grJob = new GlideRecord("sysauto");
grJob.addQuery("sys_id", "9dfbdbd847f90690c1517351e36d432e");
grJob.query();
if (grJob.next()) {
gs.info('Record found');
grJob.update();
SncTriggerSynchronizer.executeNow(grJob);
//action.setRedirectURL(grJob);
}
Here is my script I am trying to use in hope to "hit" the "Execute Now" button, but it seems not working...
Any thought?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 08:29 AM
Anyone has a clue?