Get All Site Content Types in SharePoint 2013 Online Using REST API

This article shows how to get all the site content types 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 the 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. In this article you will see the following:

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

Endpoint URI:

http://sitename/_api/web/contenttypes

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


  4. Click on Add New Project.


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

Permissions

Ensure that an appropriate permission has been 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 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">REST API Examples</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="PlaceHolderMain" runat="server">  
  15. <div>  
  16. <p>  
  17. <b>Site Content Types</b>  
  18. <br />  
  19. <select style="height:300px; width:250px" multiple="multiple" id="selectContentTypes"></select>  
  20. </p>  
  21. </div>  
  22. </asp:Content> 

App.js

Replace App.js with the following:

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


Summary

Thus in this article you saw how to get all the site content types using the REST API in SharePoint 2013 Online.