Add Template File in Document Library Using REST

Develop the project using the following method in the NAPA Tool.

On your Developer Site, open the "Napa" Office 365 Development Tools and then choose Add New Project.

  • Choose the App for SharePoint template, name the project Create Site and then choose the Create button.
  • Replace APP.js with the following source code below.
  • Publish Your App.


Prerequisites

The following are important steps to be done before creating the app. Specify the permissions that your app needs as in the following. Choose the Properties button at the bottom of the page.
  • In the Properties window, choose Permissions.
  • In the Content category, set Write permissions for the Tenant scope.
  • In the Social category, set Read permissions for the User Profiles scope.
  • Close the Properties window.


Default ASPX: CodeUnderstanding



Note:

The SP.TemplateFileType creates the file: Standard Page = 0; WikiPage = 1; FormPage = 2.

Source Code
  1. 'use strict';  
  2.   
  3. var hostweburl;  
  4. var appweburl;  
  5.   
  6. // Get the URLs for the app web the host web URL from the query string.  
  7.   
  8. $(document).ready(function()   
  9. {  
  10.   
  11.     //Get the URI decoded URLs.  
  12.     hostweburl = decodeURIComponent(getQueryStringParameter("SPHostUrl"));  
  13.     appweburl = decodeURIComponent(getQueryStringParameter("SPAppWebUrl"));  
  14.   
  15.     // Resources are in URLs in the form:  
  16.     // web_url/_layouts/15/resource  
  17.   
  18.   
  19.     // Load the js file and continue to load the page with information about the folders.  
  20.     // SP.RequestExecutor.js to make cross-domain requests  
  21.     $.getScript(hostweburl + "/_layouts/15/SP.RequestExecutor.js", addfile);  
  22. });  
  23.   
  24.   
  25. //Retrieve all of the folders from root Site  
  26. function addfile()   
  27. {  
  28.     var executor;  
  29.   
  30.     // Initialize the RequestExecutor with the app web URL.  
  31.     executor = new SP.RequestExecutor(appweburl);  
  32.   
  33.     executor.executeAsync({  
  34.   
  35.         url: appweburl + "/_api/SP.AppContextSite(@target)/web/getfolderbyserverrelativeurl('/sites/apps/Shared Documents')/files/addtemplatefile(urloffile='/sites/apps/Shared Documents/wikipage.aspx',templatefiletype=1)?@target='" + hostweburl + "'",  
  36.         method: "POST",  
  37.   
  38.   
  39.         headers:   
  40.         {  
  41.             "accept""application/json; odata=verbose"  
  42.         },  
  43.         success: function(data)  
  44.         {  
  45.             alert("success:WIKI PAGE CREATED SUCCESSFULLY ");  
  46.         },  
  47.         error: function(err)  
  48.         {  
  49.             alert("error: " + JSON.stringify(err));  
  50.         }  
  51.     });  
  52. }  
  53.   
  54. //Utilities  
  55. // Retrieve a query string value.  
  56. // For production purposes you may want to use a library to handle the query string.  
  57. function getQueryStringParameter(paramToRetrieve) {  
  58.     var params = document.URL.split("?")[1].split("&");  
  59.     for (var i = 0; i < params.length; i = i + 1) {  
  60.         var singleParam = params[i].split("=");  
  61.         if (singleParam[0] == paramToRetrieve) return singleParam[1];  
  62.     }  
  63. }  
Publish

Publish the app and click the Trust it Button.



Output

Template FILE Created Successfully in Document Library.