Welcome to Community Week 2025! Join us to learn, connect, and be recognized as we celebrate the spirit of Community and the power of AI. Get the details  

ServiceNow is requesting authentication to load data at a reference field in an UI Page.

juanrobertocamp
Tera Contributor

Hello everyone,

 

I created a UI Page to capture the information to create a child incident, the UI Page is opened after the ITIL users click on an UI Action, the Angular code is

 

 

                $scope.searchAssignmentGroup = function() {
                    var query = $scope.groupQuery;
                    var url = '/api/now/table/sys_user_group?sysparm_query=' + encodeURIComponent('nameLIKE' + query + '^ORDERBYname');
                    $http.get(url).then(function(response) {
                        $scope.groupResults = response.data.result;
                    });

 

 

How can I skip the authentication, the form will be used only by ITIL users.

 

Thanks in advance for your help.

0 REPLIES 0