{"id":6475,"date":"2021-03-19T10:08:16","date_gmt":"2021-03-19T10:08:16","guid":{"rendered":"https:\/\/www.softreetechnology.com\/?p=6475"},"modified":"2021-03-19T10:08:16","modified_gmt":"2021-03-19T10:08:16","slug":"save-a-list-as-template-in-sharepoint-online-using-powershell","status":"publish","type":"post","link":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/","title":{"rendered":"Save a list as template in SharePoint online using PowerShell"},"content":{"rendered":"\n<p><strong>Introduction-<\/strong><strong><\/strong><\/p>\n\n\n\n<p>In SharePoint, the list templates provide re-usability of columns without recreating it on every single site. For e.g. I have created a custom list which name is <strong>Project <\/strong>, in a SharePoint site collection with all relevant columns, Now I want this list structure in other site collections, without recreating the list on every single site.<\/p>\n\n\n\n<p><strong>Steps to save a list or library as template:<\/strong><\/p>\n\n\n\n<p><strong>Step-1<\/strong><\/p>\n\n\n\n<p>Go to a SharePoint list, then navigate to list settings present under the list tab on the ribbon and then click on list Settings.<\/p>\n\n\n\n<p><strong>Step-2<\/strong><\/p>\n\n\n\n<p>Click on <strong>save list as Template<\/strong> under Permissions and Management group.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son1.png\" alt=\"\" class=\"wp-image-6476\"\/><\/figure>\n\n\n\n<p><strong>Step-3<\/strong><\/p>\n\n\n\n<p>Provide template <strong>File name <\/strong>and <strong>Template name<\/strong>. If you want to include the <strong>content,<\/strong> then select the check box, Click <strong>Ok<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son2.png\" alt=\"\" class=\"wp-image-6477\"\/><\/figure>\n\n\n\n<p><strong>Step-4<\/strong><\/p>\n\n\n\n<p>Click OK on the success page.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son3.png\" alt=\"\" class=\"wp-image-6478\"\/><\/figure>\n\n\n\n<p><strong>How to download the list template &#8211;<\/strong><\/p>\n\n\n\n<p><strong>Step1- <\/strong>Go to <strong>site setting,<\/strong> Click on <strong>List Templates <\/strong>under web Designers and Gallery.<\/p>\n\n\n\n<p><strong>Step2- <\/strong>Select your <strong>List Template <\/strong>and Click to <strong>download a copy <\/strong>in the Files tab.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son4.png\" alt=\"\" class=\"wp-image-6479\"\/><\/figure>\n\n\n\n<p><strong>You can also save the list template to your site by using powershell script-<\/strong><\/p>\n\n\n\n<p>&nbsp;try{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; Add-Type -Path &#8220;..\\Microsoft.SharePoint.Client.dll&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; Add-Type -Path &#8220;..\\Microsoft.SharePoint.Client.Runtime.dll&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $SiteUrl = Read-Host &#8220;Enter the SiteUrl&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $UserName=Read-Host &#8220;Enter the username&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Password =Read-Host -AsSecureString Password<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx = New-Object Microsoft.SharePoint.Client.ClientContext($siteUrl)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($UserName,$Password)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Credentials = $credentials<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Web=$Ctx.Web<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $site=$Ctx.Site<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Load($web)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Load($site)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ListName=Read-Host &#8220;Enter the List Name&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list = $Ctx.Web.lists.GetByTitle($ListName)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $FileName=Read-Host &#8220;Enter the File Name&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $TemplateName=Read-Host &#8220;Enter the Template Name&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list.SaveAsTemplate($FileName, $TemplateName, &#8220;list template description&#8221;, $true)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; Write-Host -ForegroundColor Green &#8220;Successfully save the list Template.&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; sleep 10<\/p>\n\n\n\n<p>&nbsp;}<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; catch<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Write-Host -ForegroundColor Red &#8216;Error &#8216;,&#8217;:&#8217;$Error[0].ToString();<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sleep 10<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>Follow below screenshot and enter the values to the parameters accordingly. Then you can get a successful message.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son5.png\" alt=\"\" class=\"wp-image-6481\"\/><\/figure>\n\n\n\n<p><strong>How to upload list template to another site <\/strong><strong>&#8211;<\/strong><\/p>\n\n\n\n<p><strong>Step1- <\/strong>Go to <strong>site setting,<\/strong> Click on <strong>List Templates <\/strong>under web Designers and Gallery.<\/p>\n\n\n\n<p><strong>Step2- <\/strong>Click on <strong>Upload Document <\/strong>on the Files tab then browses your file i.e. Demo. Stop<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son6-1.png\" alt=\"\" class=\"wp-image-6482\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son7.png\" alt=\"\" class=\"wp-image-6483\"\/><\/figure>\n\n\n\n<p><strong>Step3- Save <\/strong>the list template.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son8.png\" alt=\"\" class=\"wp-image-6484\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son9.png\" alt=\"\" class=\"wp-image-6485\"\/><\/figure>\n\n\n\n<p><strong>Step4- <\/strong>Go to <strong>Site contents<\/strong>, Click on <strong>New<\/strong> then select <strong>App<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son10.png\" alt=\"\" class=\"wp-image-6486\"\/><\/figure>\n\n\n\n<p><strong>Step5- <\/strong>Select your template.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son11.png\" alt=\"\" class=\"wp-image-6487\"\/><\/figure>\n\n\n\n<p><strong>Step6- <\/strong>Provide a list <strong>Name<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son12.png\" alt=\"\" class=\"wp-image-6488\"\/><\/figure>\n\n\n\n<p><strong>Step7- <\/strong>Now your list added to the site successfully.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son13.png\" alt=\"\" class=\"wp-image-6489\"\/><\/figure>\n\n\n\n<p><strong>You can also add the list template to your site by using PowerShell script-<\/strong><\/p>\n\n\n\n<p>&nbsp;try{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; Add-Type -Path &#8220;..\\Microsoft.SharePoint.Client.dll&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; Add-Type -Path &#8220;..\\Microsoft.SharePoint.Client.Runtime.dll&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $SiteUrl = Read-Host &#8220;Enter the SiteUrl&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $UserName=Read-Host &#8220;Enter the username&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Password =Read-Host -AsSecureString Password<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx = New-Object Microsoft.SharePoint.Client.ClientContext($siteUrl)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($UserName,$Password)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Credentials = $credentials<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Web=$ctx.Web<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $site=$ctx.Site<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Load($web)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Load($site)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Template =$site.GetCustomListTemplates($Web)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $Lists = $ctx.Web.Lists<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Load($Lists)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.Load($Template)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ctx.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $TemplateName=Read-Host &#8220;Enter the Template Name&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ListName=Read-Host &#8220;Enter the List Name&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $ListTemplate = $Template | where { $_.Name -eq $TemplateName }<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $List = $Lists | where {$_.Title -eq $ListName}<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; If($List -eq $Null)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ListCreation = New-Object Microsoft.SharePoint.Client.ListCreationInformation<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ListCreation.Title = $ListName<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ListCreation.ListTemplate = $ListTemplate<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $List = $Lists.Add($ListCreation)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ctx.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; Write-Host -ForegroundColor Green &#8220;Successfully Add the list.&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; sleep 10<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; catch<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Write-Host -ForegroundColor Red &#8216;Error &#8216;,&#8217;:&#8217;$Error[0].ToString();<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sleep 10<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>Follow below screenshot and enter the values to the parameters accordingly. Then you can get a successful message.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son14.png\" alt=\"\" class=\"wp-image-6490\"\/><\/figure>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Key Words:<\/span><\/strong><\/p>\n\n\n\n<p>-Create and save a list as template in SharePoint online using PowerShell<br>-Create and add the template in SharePoint site using pnp PowerShell.<br>-How to create and add list template in SharePoint online using PowerShell?<br>-Create list template and add the list template to another site using PowerShell.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction- In SharePoint, the list templates provide re-usability of columns without recreating it on every single site. For e.g. I have created a custom list which name is Project , in a SharePoint site collection with all relevant columns, Now I want this list structure in other site collections, without recreating the list on every single site. Steps to save [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[221],"tags":[],"class_list":["post-6475","post","type-post","status-publish","format-standard","hentry","category-powershell"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Save a list as template in SharePoint online using PowerShell - Softree Technology<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Save a list as template in SharePoint online using PowerShell - Softree Technology\" \/>\n<meta property=\"og:description\" content=\"Introduction- In SharePoint, the list templates provide re-usability of columns without recreating it on every single site. For e.g. I have created a custom list which name is Project , in a SharePoint site collection with all relevant columns, Now I want this list structure in other site collections, without recreating the list on every single site. Steps to save [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Softree Technology\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-19T10:08:16+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Save a list as template in SharePoint online using PowerShell - Softree Technology","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/","og_locale":"en_US","og_type":"article","og_title":"Save a list as template in SharePoint online using PowerShell - Softree Technology","og_description":"Introduction- In SharePoint, the list templates provide re-usability of columns without recreating it on every single site. For e.g. I have created a custom list which name is Project , in a SharePoint site collection with all relevant columns, Now I want this list structure in other site collections, without recreating the list on every single site. Steps to save [&hellip;]","og_url":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/","og_site_name":"Softree Technology","article_published_time":"2021-03-19T10:08:16+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#article","isPartOf":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/"},"author":{"name":"admin","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/person\/98740297642f06debccdcee2de84086b"},"headline":"Save a list as template in SharePoint online using PowerShell","datePublished":"2021-03-19T10:08:16+00:00","mainEntityOfPage":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/"},"wordCount":862,"commentCount":0,"publisher":{"@id":"https:\/\/softreetechnology.com\/blog\/#organization"},"image":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son1.png","articleSection":["PowerShell"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/","url":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/","name":"Save a list as template in SharePoint online using PowerShell - Softree Technology","isPartOf":{"@id":"https:\/\/softreetechnology.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#primaryimage"},"image":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son1.png","datePublished":"2021-03-19T10:08:16+00:00","breadcrumb":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#primaryimage","url":"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son1.png","contentUrl":"https:\/\/www.softreetechnology.com\/wp-content\/uploads\/2021\/03\/son1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/save-a-list-as-template-in-sharepoint-online-using-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/softreetechnology.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Save a list as template in SharePoint online using PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/softreetechnology.com\/blog\/#website","url":"https:\/\/softreetechnology.com\/blog\/","name":"Softree Technology","description":"Celebrating 10+ Years in SharePoint Consulting !","publisher":{"@id":"https:\/\/softreetechnology.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/softreetechnology.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/softreetechnology.com\/blog\/#organization","name":"Softree Technology","url":"https:\/\/softreetechnology.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2023\/03\/cropped-white-logo-soft.png","contentUrl":"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2023\/03\/cropped-white-logo-soft.png","width":844,"height":230,"caption":"Softree Technology"},"image":{"@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/person\/98740297642f06debccdcee2de84086b","name":"admin","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6fc78c8a7aa3fb0bf43c3b9a2e3962d7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6fc78c8a7aa3fb0bf43c3b9a2e3962d7?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/softreeconsulting.com"],"url":"https:\/\/softreetechnology.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts\/6475","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/comments?post=6475"}],"version-history":[{"count":0,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts\/6475\/revisions"}],"wp:attachment":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/media?parent=6475"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/categories?post=6475"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/tags?post=6475"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}