Retrieving Query Suggestions in SharePoint Site 2013 Using Search REST API

Introduction

Welcome to the SharePoint 2013 REST Series. In my previous article, we saw how to get the content type for a SharePoint list using the REST API.

This article explains how to retrieve query suggestions in a SharePoint site using the Search REST API.

The SharePoint 2013 environment adds the ability to remotely interact with SharePoint sites using REST. So you can talk to SharePoint objects using any technology that supports standard REST capabilities. In this way, SharePoint data can be accessed anywhere and everywhere.

List of REST Access Points

The following is a list of access points that provide you entry into granular access points.

List of REST Popular End Points

The following is a list of endpoints that are the most commonly used in a SharePoint list.

Note: The following code is tested in my SP 2013 online environment.

Step 1

Before writing your code, please ensure you have sufficient permission to access cross-domain requests. So I have given full permission to all the contents listed below.

Tenant Full Permission
Site Collection Full Permission
Web Full Permission
List Full Permission

permission

Step 2

Navigate to the App.js file and copy the following code and paste it in.

Code
  1.   'use strict';    
  2.   var hostweburl;     
  3.   var appweburl;     
  4.        
  5.       // This code runs when the DOM is ready and creates a context object which is     
  6.       // needed to use the SharePoint object model    
  7.       $(document).ready(function ()
  8.       {    
  9.               
  10.            //Get the URI decoded URLs.     
  11.            hostweburl = decodeURIComponent( getQueryStringParameter("SPHostUrl"));     
  12.            appweburl = decodeURIComponent(  getQueryStringParameter("SPAppWebUrl"));     
  13.            // Resources are in URLs in the form:    
  14.            // web_url/_layouts/15/resource    
  15.            var scriptbase = hostweburl + "/_layouts/15/";  
  16.            var accountName = 'Domain\\Login';  
  17.        
  18.       
  19.            // Load the js file and continue to load the page with information about the list top level folders.    
  20.            // SP.RequestExecutor.js to make cross-domain requests    
  21.              
  22.            // Load the js files and continue to the successHandler    
  23.            $.getScript(scriptbase + "SP.RequestExecutor.js", execCrossDomainRequest);    
  24.        });    
  25.                  
  26.        // Function to prepare and issue the request to get    
  27.        //  SharePoint data    
  28.        function execCrossDomainRequest() 
  29.        {    
  30.              // executor: The RequestExecutor object    
  31.              // Initialize the RequestExecutor with the app web URL.    
  32.              var executor = new SP.RequestExecutor(appweburl);                            
  33.              // Issue the call against the app web.    
  34.              // To get the title using REST we can hit the endpoint:    
  35.                  
  36.              // The response formats the data in the JSON format.    
  37.              // The functions successHandler and errorHandler attend the    
  38.              //      sucess and error events respectively.    
  39.              executor.executeAsync(  
  40.              {  
  41.                    hostweburl + "'", url: appweburl + "/_api/ search/suggest?querytext='sharepoint'&inumberofresultsuggestions=4?@target='" + hostweburl + "'", method: "GET"   ",  
  42.        
  43.   
  44.                    headers: { "Accept""application/json; odata=verbose" },                   
  45.                    success: function (data) {    
  46.                    alert("success: " + JSON.stringify(data));    
  47.                    error: function (err) {    
  48.                    alert("error: " + JSON.stringify(err));    
  49.              }      
  50.   
  51.         }              
  52.   
  53.              );                                
  54.   
  55.    }                      
  56.   
  57.      // This function prepares, loads, and then executes a SharePoint query to get     
  58.      // the current users information    
  59.          
  60.  //Utilities     
  61.       
  62.  // Retrieve a query string value.     
  63.  // For production purposes you may want to use     
  64.  // a library to handle the query string.     
  65.  function getQueryStringParameter(paramToRetrieve) 
  66.  {     
  67.      var params =     
  68.      document.URL.split("?")[1].split("&");       
  69.      for (var i = 0; i < params.length; i = i + 1) 
  70.      {     
  71.          var singleParam = params[i].split("=");     
  72.          if (singleParam[0] == paramToRetrieve)     
  73.          return singleParam[1];     
  74.     }     
  75.  }     
Step 3

When deploying, you will be prompted with the following screen. Press Trust it and proceed with the deployment.

myappDevSite

Code Walkthrough

A. Post Method in REST API

The SharePoint 2013 REST service supports sending POST commands that include object definitions to endpoints that represent collections. In this example, Test List is a custom SharePoint list where list items are updated.

IF-MATCH header

Provides a way to verify that the object being changed has not been changed since it was last retrieved. Or, lets you specify to overwrite any changes, as shown in the following example: "IF-MATCH":"*".

B. Request Executor.JS

The cross-domain library lets you interact with more than one domain in your remote app page through a proxy. SP.RequestExecutor.js acts as a cross-domain library to fetch or create a SharePoint list from your APP domain.
  1.  function execCrossDomainRequest() 
  2.  {    
  3.        // executor: The RequestExecutor object    
  4.        // Initialize the RequestExecutor with the app web URL.    
  5.        var executor = new SP.RequestExecutor(appweburl); var metatdata = "      
  6.        { 
  7.             '__metadata': { 'type': 'SP.Data.TestListListItem' 
  8.        }, 'Title': 'changelistitemtitle'
  9.   }";