Deactivate A Feature in a SharePoint Site 2013 Using REST API

Introduction

Welcome to the SharePoint 2013 REST Series. In my previous article, we saw how to activate a new feature in SharePoint online using the REST API.
This article explains how to deactivate a new feature in SharePoint online using the REST API.

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 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.

  • 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 Popular 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/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.

REST Popular End Point to add a new feature.
Here is the endpoint we will use:
http://sitecollection/site/_api/web/features/add(featureId,force,featdefScope)

Feature ID

Feature ID: Each SharePoint feature has a built-in feature associated with it.

Force

Specifies whether to overwrite an existing feature with the same feature identifier.

FeatdefScope

The scope can be either Farm or Web Level. 1 represents Farm Level and 2 represents Web Level.

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

 

Before Writing Your Code

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

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

When Developing

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.

    function execCrossDomainRequest() {
    // executor: The RequestExecutor object
    // Initialize the RequestExecutor with the app web URL.
    var executor = new SP.RequestExecutor(appweburl); var metatdata = "{ '__metadata': { 'type': 'SP.Data.TestListListItem' }, 'Title': 'changelistitemtitle'}";

I hope this article helps you.