Get Push Notification Subscription in a SharePoint Site 2013 Using REST API

Introduction

Welcome to the SharePoint 2013 REST Series. In my previous article, we saw how to get get manager properties via REST API in a SharePoint online environment using the REST API.

This article explains how to get the pushNotificationSubscribers for a given site.

The SharePoint 2013 environment adds the ability for you to remotely interact with SharePoint sites using REST. So you can talk to SharePoint objects using any technology that support 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:

  • Site

    http://server/site/_api/site
     
  • Web

    http://server/site/_api/web
     
  • User Profile

    http:// server/site/_api/SP.UserProfiles.PeopleManager
     
  • Search

    http:// server/site/_api/search
     
  • Publishing

    http:// server/site/_api/publishing
     

List of REST End Points

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

  • http://server/site/_api/web/lists
  • http://server/site/_api/lists/getbytitle('listname')
  • http://server/site/_api/web/lists(‘guid’)
  • http://server/site/_api/web/lists/getbytitle(‘Title’)

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

Permissions in SharePoint

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

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

ListCreation in SharePoint

Code Walkthrough

  1. 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":"*".
     
  2. 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.      // executor: The RequestExecutor object   
    3.      // Initialize the RequestExecutor with the app web URL.   
    4.      var executor = new SP.RequestExecutor(appweburl); var metatdata = "{ '__metadata': { 'type': 'SP.Data.TestListListItem' }, 'Title': 'changelistitemtitle'}"

I hope this article helps you.