How to Get All Available Web Templates From Website in SharePoint 2013 Online Using REST API

In this article you will see how to get all available web templates from a website using the REST API in SharePoint 2013 Online.

Introduction

SharePoint 2013 introduces a Representational State Transfer (REST) service that is comparable to the existing SharePoint client object models. This allows the developers to interact remotely with SharePoint data using any technology that supports REST web requests. This means that developers can do 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. In this article you will see how to do the following:

  • Create an app using NAPA Tool in SharePoint 2013 Online.
  • Cross-Domain Requests.
  • Get all available web templates from the host site using REST API.

Endpoint URI

http://sitename/_api/web/getavailablewebtemplates(1033)

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.

HTTP Request

GET: Read a Resource.

Use the following procedure to create an app using the 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.

    Office 365 Development Tools

  4. Click on Add New Project.

    Add New Project

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

    App for SharePoint

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.

Permissions

Default.spx

Replace the contenst of Default.aspx with the following:

  1. <%-- The markup and script in the following Content element will be placed in the <head>of the page --%>  
  2. <asp:Content ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">  
  3. <script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js"></script>  
  4. <script type="text/javascript" src="/_layouts/15/sp.runtime.js"></script>  
  5. <script type="text/javascript" src="/_layouts/15/sp.js"></script>  
  6. <!-- Add your CSS styles to the following file -->  
  7. <link rel="Stylesheet" type="text/css" href="../Content/App.css" />  
  8. <!-- Add your JavaScript to the following file -->  
  9. <script type="text/javascript" src="../Scripts/App.js"></script>  
  10. </asp:Content>  
  11. <%-- The markup in the following Content element will be placed in the TitleArea of the page --%>  
  12. <asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server">Page Title</asp:Content>  
  13. <%-- The markup and script in the following Content element will be placed in the <body>of the page --%>  
  14. <asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server">REST API Examples</asp:Content>  
  15. <%-- The markup and script in the following Content element will be placed in the <body>of the page --%>  
  16. <asp:Content ContentPlaceHolderID="PlaceHolderMain" runat="server">  
  17. <div>  
  18. <p>  
  19. <b>Web Templates</b>  
  20. <br />  
  21. <select style="height:300px; width:250px" multiple="multiple" id="selectWebTemplates"></select>  
  22. </p>  
  23. </div>  
  24. </asp:Content> 
App.js:

Replace the contenst of App.js with the following:

  1. 'use strict';  
  2.   
  3. var hostweburl;  
  4. var appweburl;  
  5. // Load the required SharePoint libraries.  
  6. $(document).ready(function() {  
  7. //Get the URI decoded URLs.  
  8. hostweburl = decodeURIComponent(  
  9. getQueryStringParameter("SPHostUrl"));  
  10. appweburl = decodeURIComponent(  
  11. getQueryStringParameter("SPAppWebUrl"));  
  12. // Resources are in URLs in the form:  
  13. // web_url/_layouts/15/resource  
  14. var scriptbase = hostweburl + "/_layouts/15/";  
  15. // Load the js file and continue to load the page with information about the web templates.  
  16. // SP.RequestExecutor.js to make cross-domain requests  
  17. $.getScript(scriptbase + "SP.RequestExecutor.js", loadPage);  
  18. });  
  19. //Utilities  
  20. // Retrieve a query string value.  
  21. // For production purposes you may want to use a library to handle the query string.  
  22. function getQueryStringParameter(paramToRetrieve) {  
  23. var params = document.URL.split("?")[1].split("&");  
  24. for (var i = 0; i < params.length; i = i + 1) {  
  25. var singleParam = params[i].split("=");  
  26. if (singleParam[0] == paramToRetrieve) return singleParam[1];  
  27. }  
  28. }  
  29. function loadPage() {  
  30. getWebTemplates();  
  31. }  
  32. //Retrieve all of the web templates  
  33. function getWebTemplates() {  
  34. var executor;  
  35. // Initialize the RequestExecutor with the app web URL.  
  36. executor = new SP.RequestExecutor(appweburl);  
  37. executor.executeAsync({  
  38. url: appweburl + "/_api/SP.AppContextSite(@target)/web/getavailablewebtemplates(1033)?@target='" + hostweburl + "'",  
  39. method: "GET",  
  40. headers: {  
  41. "Accept""application/json; odata=verbose"  
  42. },  
  43. success: getWebTemplatesSuccessHandler,  
  44. error: getWebTemplatesErrorHandler  
  45. });  
  46. }  
  47. //Populate the selectWebTemplates control after retrieving all of the Web templates.  
  48. function getWebTemplatesSuccessHandler(data) {  
  49. var jsonObject = JSON.parse(data.body);  
  50. var selectWebTemplates = document.getElementById("selectWebTemplates");  
  51.   
  52. if (selectWebTemplates.hasChildNodes()) {  
  53. while (selectWebTemplates.childNodes.length >= 1) {  
  54. selectWebTemplates.removeChild(selectWebTemplates.firstChild);  
  55. }  
  56. }  
  57. var results = jsonObject.d.results;  
  58. for (var i = 0; i < results.length; i++) {  
  59. var selectOption = document.createElement("option");  
  60. selectOption.value = results[i].Title;  
  61. selectOption.innerText = results[i].Title;  
  62. selectWebTemplates.appendChild(selectOption);  
  63. }  
  64. }  
  65. function getWebTemplatesErrorHandler(data, errorCode, errorMessage) {  
  66. alert("Could not get Web Templates: " + errorMessage);  
  67. }  
Deploy the App
  1. Click on Run Project.

    Run Project

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

    app

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

    new window

  4. Click on Trust it.

    Trust it

  5. All the available web templates from the host site are displayed.

    web templates

Summary

Thus in this article you saw how to get all the available web templates using the REST API in SharePoint 2013 Online.