How to Enable Versioning For the List in SharePoint 2013 Online Using REST API

Introduction

SharePoint 2013 introduces a Representational State Transfer (REST) service that is comparable to the existing SharePoint client object models. This allows developers to interact remotely with SharePoint data by using any technology that supports REST web requests. This means that developers can perform Create, Read, Update and Delete (CRUD) operations from their apps for SharePoint, solutions and client applications, using REST web technologies and standard Open Data Protocol (OData) syntax.

I have a custom list named “Custom List”. You will see how to enable versioning for the list in the quick launch bar. (Navigate to the list. Click on the List tab in the ribbon interface. Click on List Settings. Click on Versioning Settings that is available under General Settings.)



In this article you will see the following:

  1. Create an app using the NAPA Tool in SharePoint 2013 Online.
  2. Cross-Domain Requests.
  3. Enable versioning for the list using the REST API.

Endpoint URI

https://c986.sharepoint.com/_api/web/lists/getbytitle('listName')

Note: If you are making cross-domain requests, then you need to add SP.AppContextSite(@target) and ?@target='<host web url>' to the endpoint URI.

Properties

The following properties need to be used in a REST request to enable versioning for the list.

  1. IF-MATCH header: It is required in POST requests for a MERGE operation. Description: 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. X-HTTP-Method header: It is required in POST requests for a MERGE operations. Description: Used to specify that the request performs a MERGE operation. Example: "X-HTTP-Method":"MERGE".

MERGE Operation

MERGE operations are used to update existing SharePoint objects.

Create an app using NAPA Tool

  1. Navigate to the SharePoint 2013 Online site.
  2. Click on Site Contents in the quick launch bar.
  3. Click on “Napa” Office 365 Development Tools.



  4. Click on Add New Project.



  5. Select App for SharePoint, enter the Project name and then click on Create.


Permissions

Ensure appropriate permission is provided to access the content. Click on the Properties button, and then click on Permissions. Set the required permission to access the content.



Default.aspx

Replace the contents of Default.aspx with the following:

<%-- The markup and script in the following Content element will be placed in the <head>of the page --%>

<asp:Content ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">

<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js"></script>

<script type="text/javascript" src="/_layouts/15/sp.runtime.js"></script>

<script type="text/javascript" src="/_layouts/15/sp.js"></script>

<!-- Add your CSS styles to the following file -->

<link rel="Stylesheet" type="text/css" href="../Content/App.css" />

<!-- Add your JavaScript to the following file -->

<script type="text/javascript" src="../Scripts/App.js"></script>

</asp:Content>

<%-- The markup in the following Content element will be placed in the TitleArea of the page --%>

<asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server">Page Title</asp:Content>

<%-- The markup and script in the following Content element will be placed in the <body>of the page --%>

<asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server">REST API Examples</asp:Content>

<%-- The markup and script in the following Content element will be placed in the <body>of the page --%>

<asp:Content ContentPlaceHolderID="PlaceHolderMain" runat="server">

    <div>

        <p>

            <b>Enable versioning for list</b>

            <br />

            <input type="text" value="List Name Here" id="listnametext" />

            <button id="enableversioningbutton">Enable Versioning</button>

        </p>

    </div>

</asp:Content>


App.js

Replace the contents of App.js with the following:

'use strict';

 

var hostweburl;

var appweburl;

 

// Load the required SharePoint libraries.

$(document).ready(function () {

    //Get the URI decoded URLs.

    hostweburl = decodeURIComponent(

    getQueryStringParameter("SPHostUrl"));

    appweburl = decodeURIComponent(

    getQueryStringParameter("SPAppWebUrl"));

 

    //Assign events to buttons

    $("#enableversioningbutton").click(function (event) {

        enableVersioning();

        event.preventDefault();

    });

 

    // Resources are in URLs in the form:

    // web_url/_layouts/15/resource

    var scriptbase = hostweburl + "/_layouts/15/";

 

    // Load the js file and continue to load the page.

    // SP.RequestExecutor.js to make cross-domain requests

    $.getScript(scriptbase + "SP.RequestExecutor.js");

});

 

// Utilities

// Retrieve a query string value.

// For production purposes you may want to use a library to handle the query string.

function getQueryStringParameter(paramToRetrieve) {

    var params = document.URL.split("?")[1].split("&");

    for (var i = 0; i < params.length; i = i + 1) {

        var singleParam = params[i].split("=");

        if (singleParam[0] == paramToRetrieve) return singleParam[1];

    }

}

 

// Enable versioning for the list

function enableVersioning() {

    var listnametext = document.getElementById("listnametext").value;

    var executor;

 

    // Initialize the RequestExecutor with the app web URL.

    executor = new SP.RequestExecutor(appweburl);

    executor.executeAsync({

        url: appweburl + "/_api/SP.AppContextSite(@target)/web/lists/getbytitle('" + listnametext + "')?@target='" + hostweburl + "'",

        method: "POST",

        body: "{ '__metadata': { 'type': 'SP.List' }, 'EnableVersioning': true}",

        headers: {

            "IF-MATCH""*",

            "X-HTTP-Method""MERGE",

            "content-type""application/json;odata=verbose"

        },

        success: enableVersioningSuccessHandler,

        error: enableVersioningErrorHandler

    });

}

 

// Success Handler

function enableVersioningSuccessHandler(data) {

    alert("Versioning is enabled successfully for the list.")

}

 

// Error Handler

function enableVersioningErrorHandler(data, errorCode, errorMessage) {

    alert("Could not enable versioning for the list: " + errorMessage);

}


Deploy the App

 

  1. Click on Run Project.



  2. The app will be packaged, deployed and launched.



  3. Click on “Click here to launch your app in a new window”.



  4. Click on Trust it.



  5. Enter the list name and then click on the Enable Versioning button.



  6. Versioning is enabled for the list.

Summary

Thus in this article you saw how to enable versioning for the list using the REST API in SharePoint 2013 Online.