Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2021 02:26 PM
Hi, you should be able to assign gs.getProperty("glide.servlet.uri") to a variable
or include it in your code directly
var myInstance = gs.getProperty("glide.servlet.uri");
var myUrl = myInstance + 'api/now/' + myTable;
or
var myURL = gs.getProperty("glide.servlet.uri") + 'api/now/' + myTable;