{"id":6760,"date":"2021-06-01T06:33:31","date_gmt":"2021-06-01T06:33:31","guid":{"rendered":"https:\/\/softreetechnology.com\/?p=6760"},"modified":"2021-06-01T06:33:32","modified_gmt":"2021-06-01T06:33:32","slug":"change-list-library-to-new-modern-experiences-using-powershell","status":"publish","type":"post","link":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/","title":{"rendered":"Change List\/Library to New\/Modern Experiences using PowerShell"},"content":{"rendered":"\n<p>In this blog we are going to discuss about how to convert the List\/Library to classic version in Communication site. We can convert it manually or programmatically using PowerShell.<br>First we are converting the Modern list\/library to classic experience of a site collection and then we will see how to covert classic list\/library to modern experiences. We can do this through manual method as well as in coding (PowerShell) method.<\/p>\n\n\n\n<p><strong><u>Convert A list\/library of a site collection to Classic or New experiences:<\/u><\/strong><\/p>\n\n\n\n<p>By using the below code, you can convert a modern list\/library to classic experiences.<\/p>\n\n\n\n<p>Add-Type -Path &#8220;C:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\16\\ISAPI\\Microsoft.SharePoint.Client.dll&#8221;<\/p>\n\n\n\n<p>Add-Type -Path &#8220;C:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\16\\ISAPI\\Microsoft.SharePoint.Client.Runtime.dll&#8221;<\/p>\n\n\n\n<p>$siteURL = Read-Host &#8220;Enter site Url&#8221;<\/p>\n\n\n\n<p>$listName= Read-Host &#8220;Enter List Name&#8221;<\/p>\n\n\n\n<p>$userId= Read-Host &#8220;Enter UserName&#8221;<\/p>\n\n\n\n<p>$password = Read-Host &#8220;Enter password&#8221;<\/p>\n\n\n\n<p>$credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($userId,(ConvertTo-SecureString $password -AsPlainText -Force))<\/p>\n\n\n\n<p>try {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context = New-Object Microsoft.SharePoint.Client.ClientContext($siteURL)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.Credentials = $credentials<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $oWeb = $Context.web<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.Load($oWeb)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list = $oWeb.Lists.GetByTitle($listName)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list.ListExperienceOptions = &#8220;ClassicExperience&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list.Update()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.ExecuteQuery()<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>catch {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>By the below code, you can convert a classic list\/library to new experiences (modern experience).<\/p>\n\n\n\n<p>try {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context = New-Object Microsoft.SharePoint.Client.ClientContext($siteURL)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.Credentials = $credentials<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $oWeb = $Context.web<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.Load($oWeb)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list = $oWeb.Lists.GetByTitle($listName)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list.ListExperienceOptions = &#8220;NewExperience&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $list.Update()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.ExecuteQuery()<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>catch {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>Note : You also can do it manually by following the below steps to convert a library to classic experiences.<\/p>\n\n\n\n<ol class=\"wp-block-list\" type=\"1\"><li>Go to List\/Library Settings by clicking the gear menu of that SharePoint page>> Click on \u201c<strong>Advanced Settings<\/strong>\u201d<\/li><li>Scroll down, then from \u201c<strong>List<\/strong> <strong>Experience<\/strong>\u201d Section, Select \u201c<strong>Classic Experience<\/strong> \u201c<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"650\" height=\"227\" src=\"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis1.png\" alt=\"\" class=\"wp-image-6761\" srcset=\"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis1.png 650w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis1-300x105.png 300w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis1-410x143.png 410w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis1-570x199.png 570w\" sizes=\"auto, (max-width: 650px) 100vw, 650px\" \/><\/figure>\n\n\n\n<p>       Library in Modern Mode<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"650\" height=\"187\" src=\"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis2.png\" alt=\"\" class=\"wp-image-6762\" srcset=\"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis2.png 650w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis2-300x86.png 300w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis2-410x118.png 410w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis2-570x164.png 570w\" sizes=\"auto, (max-width: 650px) 100vw, 650px\" \/><\/figure>\n\n\n\n<p>Library in Classic Mode<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"650\" height=\"255\" src=\"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis3.png\" alt=\"\" class=\"wp-image-6763\" srcset=\"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis3.png 650w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis3-300x118.png 300w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis3-410x161.png 410w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis3-510x200.png 510w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis3-570x224.png 570w\" sizes=\"auto, (max-width: 650px) 100vw, 650px\" \/><\/figure>\n\n\n\n<p><strong>Note: <\/strong>If you want to convert a classic list\/library to Modern then choose \u201c<strong>New Experience<\/strong> \u201c in \u201cLis Experience\u201d Section<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"650\" height=\"262\" src=\"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis4.png\" alt=\"\" class=\"wp-image-6764\" srcset=\"https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis4.png 650w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis4-300x121.png 300w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis4-410x165.png 410w, https:\/\/softreetechnology.com\/blog\/wp-content\/uploads\/2021\/06\/bis4-570x230.png 570w\" sizes=\"auto, (max-width: 650px) 100vw, 650px\" \/><\/figure>\n\n\n\n<p><strong><u>Convert All list\/library of a site collection to Classic or New experiences<\/u><\/strong><\/p>\n\n\n\n<p>Follow the below code to convert all the Modern list\/library of a site collection to classic experiences.<\/p>\n\n\n\n<p>$siteURL = Read-Host &#8220;Enter site Url&#8221;<\/p>\n\n\n\n<p>$listName= Read-Host &#8220;Enter List Name&#8221;<\/p>\n\n\n\n<p>$userId= Read-Host &#8220;Enter UserName&#8221;<\/p>\n\n\n\n<p>$password = Read-Host &#8220;Enter password&#8221;<\/p>\n\n\n\n<p>$credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($userId,(ConvertTo-SecureString $password -AsPlainText -Force))<\/p>\n\n\n\n<p>try {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context = New-Object Microsoft.SharePoint.Client.ClientContext($siteURL)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.Credentials = $credentials<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $oWeb = $Context.web<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.Load($oWeb)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $lists = $oWeb.Lists<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.Load($lists)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; $context.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; foreach($list in $lists){<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if($list.ListExperienceOptions -eq &#8220;NewExperience&#8221; -and ($list.Hidden -eq $false))<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $list.ListExperienceOptions = &#8220;ClassicExperience&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $list.ListExperienceOptions = &#8220;ClassicExperience&#8221;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $list.Update()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $context.ExecuteQuery()<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>catch {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; sleep 5<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>Note :\u00a0If you want to convert a classic list\/library to Modern, then \u00a0in the coding of \u201c$list.ListExperienceOptions = &#8220;ClassicExperience&#8221;\u201d change the <strong>ListExperienceOptions<\/strong> \u201c<strong>ClaasicExperience\u201d<\/strong> to \u201c<strong>NewExperience\u201d.<\/strong><\/p>\n\n\n\n<p><br>Key words:<br><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Change list\/library to new experiences using PowerShell<\/li><li>Convert all list\/library to classic and new experiences using PowerShell csom<\/li><li>Programmatically convert list\/library to classic experiences<\/li><\/ol>\n","protected":false},"excerpt":{"rendered":"<p>In this blog we are going to discuss about how to convert the List\/Library to classic version in Communication site. We can convert it manually or programmatically using PowerShell.First we are converting the Modern list\/library to classic experience of a site collection and then we will see how to covert classic list\/library to modern experiences. We can do this through [&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-6760","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>Change List\/Library to New\/Modern Experiences 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\/change-list-library-to-new-modern-experiences-using-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Change List\/Library to New\/Modern Experiences using PowerShell - Softree Technology\" \/>\n<meta property=\"og:description\" content=\"In this blog we are going to discuss about how to convert the List\/Library to classic version in Communication site. We can convert it manually or programmatically using PowerShell.First we are converting the Modern list\/library to classic experience of a site collection and then we will see how to covert classic list\/library to modern experiences. We can do this through [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Softree Technology\" \/>\n<meta property=\"article:published_time\" content=\"2021-06-01T06:33:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-06-01T06:33:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis1.png\" \/>\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=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Change List\/Library to New\/Modern Experiences 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\/change-list-library-to-new-modern-experiences-using-powershell\/","og_locale":"en_US","og_type":"article","og_title":"Change List\/Library to New\/Modern Experiences using PowerShell - Softree Technology","og_description":"In this blog we are going to discuss about how to convert the List\/Library to classic version in Communication site. We can convert it manually or programmatically using PowerShell.First we are converting the Modern list\/library to classic experience of a site collection and then we will see how to covert classic list\/library to modern experiences. We can do this through [&hellip;]","og_url":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/","og_site_name":"Softree Technology","article_published_time":"2021-06-01T06:33:31+00:00","article_modified_time":"2021-06-01T06:33:32+00:00","og_image":[{"url":"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis1.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#article","isPartOf":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/"},"author":{"name":"admin","@id":"https:\/\/softreetechnology.com\/blog\/#\/schema\/person\/98740297642f06debccdcee2de84086b"},"headline":"Change List\/Library to New\/Modern Experiences using PowerShell","datePublished":"2021-06-01T06:33:31+00:00","dateModified":"2021-06-01T06:33:32+00:00","mainEntityOfPage":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/"},"wordCount":668,"commentCount":0,"publisher":{"@id":"https:\/\/softreetechnology.com\/blog\/#organization"},"image":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis1.png","articleSection":["PowerShell"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/","url":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/","name":"Change List\/Library to New\/Modern Experiences using PowerShell - Softree Technology","isPartOf":{"@id":"https:\/\/softreetechnology.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#primaryimage"},"image":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis1.png","datePublished":"2021-06-01T06:33:31+00:00","dateModified":"2021-06-01T06:33:32+00:00","breadcrumb":{"@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#primaryimage","url":"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis1.png","contentUrl":"https:\/\/softreetechnology.com\/wp-content\/uploads\/2021\/06\/bis1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/softreetechnology.com\/blog\/powershell\/change-list-library-to-new-modern-experiences-using-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/softreetechnology.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Change List\/Library to New\/Modern Experiences 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\/6760","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=6760"}],"version-history":[{"count":1,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts\/6760\/revisions"}],"predecessor-version":[{"id":6765,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/posts\/6760\/revisions\/6765"}],"wp:attachment":[{"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/media?parent=6760"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/categories?post=6760"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/softreetechnology.com\/blog\/wp-json\/wp\/v2\/tags?post=6760"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}