{"id":1123,"date":"2020-11-27T19:18:51","date_gmt":"2020-11-27T19:18:51","guid":{"rendered":"https:\/\/regroove.ca\/stellark\/?p=1123"},"modified":"2023-02-24T17:49:01","modified_gmt":"2023-02-24T17:49:01","slug":"renaming-a-microsoft-team","status":"publish","type":"post","link":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/","title":{"rendered":"Renaming a Microsoft Team"},"content":{"rendered":"\n<p>If you <strong><em>Need <\/em><\/strong>to rename a Team make sure you have reviewed this <a rel=\"noreferrer noopener\" href=\"https:\/\/docs.microsoft.com\/en-us\/sharepoint\/change-site-address#:~:text=see%20Start%2DSPOSiteRename-,Effects%20of%20changing%20a%20site%20address,a%20link%20to%20the%20site.\" target=\"_blank\">MS article<\/a> first and understand the effects this change will have.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"358\" height=\"271\" src=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-9.png\" alt=\"\" class=\"wp-image-1124\" srcset=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-9.png 358w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-9-300x227.png 300w\" sizes=\"(max-width: 358px) 100vw, 358px\" \/><figcaption class=\"wp-element-caption\"><strong>Basic architecture for a Team<\/strong><\/figcaption><\/figure>\n\n\n\n<p>When you create a Team you get a Group (M365 Group) and that Group provisions a set of pre-defined resources such as:<\/p>\n\n\n\n<ul>\n<li>SharePoint (Site, Storage)<\/li>\n\n\n\n<li>OneNote<\/li>\n\n\n\n<li>Planner<\/li>\n\n\n\n<li>Calendar<\/li>\n\n\n\n<li>Mailbox (Exchange)<\/li>\n<\/ul>\n\n\n\n<p>The Group contains a lot of important information about the relationship between itself, SharePoint and the Team. <\/p>\n\n\n\n<p>If you need to rename a Team you should consider following these steps to ensure the best outcome:<\/p>\n\n\n\n<ul>\n<li>Rename the Team<\/li>\n\n\n\n<li>Update the Group email addresses<\/li>\n\n\n\n<li>Rename the SharePoint site and display name<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Groups Under the Hood<\/h2>\n\n\n\n<p>The Group contains the info that SharePoint and Teams both need to work with each other.<\/p>\n\n\n\n<p>For example when you access the files Tab in a Team Channel it knows to access a specific folder in a SharePoint site.  It knows this because Teams communicates with the Group which provides the URL&#8217;s to communicate with SharePoint.  <\/p>\n\n\n\n<p>The Group contains the SharePoint URLs that are used to facilitate the Teams request for file access.  There is a reliance on the Group to have the correct information so that these and other Team features will work.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 1: Rename the Team<\/strong><\/h2>\n\n\n\n<p>You can rename the Team from the<strong> Teams client<\/strong>, the<strong> Teams Admin portal <\/strong>or with <strong>PowerShell<\/strong>.  Since I also want to rename the Group email and alias I will use PowerShell for both.<\/p>\n\n\n\n<p>You will need the <a rel=\"noreferrer noopener\" href=\"https:\/\/www.powershellgallery.com\/packages\/MicrosoftTeams\/0.9.5\" target=\"_blank\">Teams<\/a> and <a href=\"https:\/\/docs.microsoft.com\/en-us\/powershell\/exchange\/connect-to-exchange-online-powershell?view=exchange-ps\" target=\"_blank\" rel=\"noreferrer noopener\">Exchange Online<\/a> PowerShell Modules for these tasks.<\/p>\n\n\n\n<h5 class=\"has-luminous-vivid-orange-color has-text-color wp-block-heading\">Connect to Microsoft Teams and Exchange Online<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>Connect-MicrosoftTeams\nConnect-ExchangeOnline -UserPrincipalName \"Username\" -ShowProgress $true<\/code><\/pre>\n\n\n\n<h5 class=\"has-luminous-vivid-orange-color has-text-color wp-block-heading\">Get the Group ID for the Team you wish to rename<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-team -displayname \"Team Name\"<\/code><\/pre>\n\n\n\n<h5 class=\"has-luminous-vivid-orange-color has-text-color wp-block-heading\">Rename team Name and Description<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-team -GroupId &lt;Group ID of Team to rename&gt; \n-DisplayName \"New Name\" -Description \"New Name or details on the team's purpose\"<\/code><\/pre>\n\n\n\n<h5 class=\"has-luminous-vivid-orange-color has-text-color wp-block-heading\">Verify team and details<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-team -displayname \"New Name\" | Fl<\/code><\/pre>\n\n\n\n<h5 class=\"has-luminous-vivid-orange-color has-text-color wp-block-heading\">Update mail alias, Primary SMTP and remove old address<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-UnifiedGroup -Identity \"Team Name\" -alias \"New alias name\" \n-EmailAddresses: @{Add =\"new email address\"}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-UnifiedGroup -identity \"Team Name\" -PrimarySMTPAddress \n\"new email address \"<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-UnifiedGroup -Identity \"Team Name\" -EmailAddresses @{Remove=\"old email address\"}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-UnifiedGroup -Identity \"Team Name\" -EmailAddresses: \n@{Add =\"new email address @company.onmicrosoft.com\"}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Rename the SharePoint Site<\/h2>\n\n\n\n<p>Renaming a Team has no effect on the URLs used by SharePoint.  The Group contains certain URLs that are used to access SharePoint. These URLs include; the default document library, the site and the OneNote Notebook.  <\/p>\n\n\n\n<p>If you want the SharePoint URLs to also reflect the Team name change then you can do this with PowerShell or from the SharePoint Admin Center. When a SharePoint site name (that is connected to a group)  is changed, the Groups SharePoint URLs are also updated.<\/p>\n\n\n\n<h3 class=\"has-black-color has-text-color wp-block-heading\">Rename the site from the SharePoint Admin Center<\/h3>\n\n\n\n<p><strong>NOTE: <\/strong>Before you do this please refer to this MS article which describes the <a rel=\"noreferrer noopener\" href=\"https:\/\/docs.microsoft.com\/en-us\/sharepoint\/change-site-address\" target=\"_blank\">&#8220;Effects of Changing a Site Address&#8221;<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"734\" height=\"44\" src=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-17.png\" alt=\"\" class=\"wp-image-1141\" srcset=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-17.png 734w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-17-300x18.png 300w\" sizes=\"(max-width: 734px) 100vw, 734px\" \/><\/figure>\n\n\n\n<p>Existing SharePoint URLs from the Groups properties before the site name change<\/p>\n\n\n\n<figure class=\"wp-block-image alignleft size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"424\" height=\"280\" src=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-10.png\" alt=\"\" class=\"wp-image-1134\" srcset=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-10.png 424w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-10-300x198.png 300w\" sizes=\"(max-width: 424px) 100vw, 424px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>In this example I am going to rename the site from Green to Red<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"209\" height=\"228\" src=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-12.png\" alt=\"\" class=\"wp-image-1136\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"393\" height=\"169\" src=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-13.png\" alt=\"\" class=\"wp-image-1137\" srcset=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-13.png 393w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-13-300x129.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1188\" height=\"296\" src=\"https:\/\/i1.wp.com\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-15.png?fit=1024%2C255&amp;ssl=1\" alt=\"\" class=\"wp-image-1139\" srcset=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-15.png 1188w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-15-300x75.png 300w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-15-1024x255.png 1024w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-15-768x191.png 768w\" sizes=\"(max-width: 1188px) 100vw, 1188px\" \/><\/figure>\n\n\n\n<p>We can see here that both the site name and display name have changed and the Group SharePoint URLs have as well.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"727\" height=\"45\" src=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-16.png\" alt=\"\" class=\"wp-image-1140\" srcset=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-16.png 727w, https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2020\/11\/image-16-300x19.png 300w\" sizes=\"(max-width: 727px) 100vw, 727px\" \/><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you Need to rename a Team make sure you have reviewed this MS article first and understand the effects this change will have. When you create a Team you get a Group (M365 Group) and that Group provisions a set of pre-defined resources such as: The Group contains a lot of important information about &hellip; <a href=\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/\"><\/a><\/p>\n","protected":false},"author":11,"featured_media":970,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[265,174,264,252,220],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Renaming a Microsoft Team - Stephanie Kahlam<\/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:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Renaming a Microsoft Team - Stephanie Kahlam\" \/>\n<meta property=\"og:description\" content=\"If you Need to rename a Team make sure you have reviewed this MS article first and understand the effects this change will have. When you create a Team you get a Group (M365 Group) and that Group provisions a set of pre-defined resources such as: The Group contains a lot of important information about &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/\" \/>\n<meta property=\"og:site_name\" content=\"Stephanie Kahlam\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-27T19:18:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-24T17:49:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"225\" \/>\n\t<meta property=\"og:image:height\" content=\"225\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Stephanie Kahlam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stephanie Kahlam\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/\",\"url\":\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/\",\"name\":\"Renaming a Microsoft Team - Stephanie Kahlam\",\"isPartOf\":{\"@id\":\"https:\/\/regroove.ca\/stellark\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg\",\"datePublished\":\"2020-11-27T19:18:51+00:00\",\"dateModified\":\"2023-02-24T17:49:01+00:00\",\"author\":{\"@id\":\"https:\/\/regroove.ca\/stellark\/#\/schema\/person\/175e89cb69612178b2ac838c0bab6149\"},\"breadcrumb\":{\"@id\":\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#primaryimage\",\"url\":\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg\",\"contentUrl\":\"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg\",\"width\":225,\"height\":225},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Stellark Home\",\"item\":\"https:\/\/regroove.ca\/stellark\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Renaming a Microsoft Team\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/regroove.ca\/stellark\/#website\",\"url\":\"https:\/\/regroove.ca\/stellark\/\",\"name\":\"Stephanie Kahlam\",\"description\":\"Microsoft 365 and SMB.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/regroove.ca\/stellark\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/regroove.ca\/stellark\/#\/schema\/person\/175e89cb69612178b2ac838c0bab6149\",\"name\":\"Stephanie Kahlam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/regroove.ca\/stellark\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/398b95e23dc9eaf37a780b86a239b485?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/398b95e23dc9eaf37a780b86a239b485?s=96&d=mm&r=g\",\"caption\":\"Stephanie Kahlam\"},\"url\":\"https:\/\/regroove.ca\/stellark\/author\/skahlam\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Renaming a Microsoft Team - Stephanie Kahlam","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:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/","og_locale":"en_US","og_type":"article","og_title":"Renaming a Microsoft Team - Stephanie Kahlam","og_description":"If you Need to rename a Team make sure you have reviewed this MS article first and understand the effects this change will have. When you create a Team you get a Group (M365 Group) and that Group provisions a set of pre-defined resources such as: The Group contains a lot of important information about &hellip;","og_url":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/","og_site_name":"Stephanie Kahlam","article_published_time":"2020-11-27T19:18:51+00:00","article_modified_time":"2023-02-24T17:49:01+00:00","og_image":[{"width":225,"height":225,"url":"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg","type":"image\/jpeg"}],"author":"Stephanie Kahlam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stephanie Kahlam","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/","url":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/","name":"Renaming a Microsoft Team - Stephanie Kahlam","isPartOf":{"@id":"https:\/\/regroove.ca\/stellark\/#website"},"primaryImageOfPage":{"@id":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#primaryimage"},"image":{"@id":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#primaryimage"},"thumbnailUrl":"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg","datePublished":"2020-11-27T19:18:51+00:00","dateModified":"2023-02-24T17:49:01+00:00","author":{"@id":"https:\/\/regroove.ca\/stellark\/#\/schema\/person\/175e89cb69612178b2ac838c0bab6149"},"breadcrumb":{"@id":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#primaryimage","url":"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg","contentUrl":"https:\/\/regroove.ca\/stellark\/wp-content\/uploads\/sites\/3\/2019\/07\/images.jpg","width":225,"height":225},{"@type":"BreadcrumbList","@id":"https:\/\/regroove.ca\/stellark\/2020\/11\/27\/renaming-a-microsoft-team\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Stellark Home","item":"https:\/\/regroove.ca\/stellark\/"},{"@type":"ListItem","position":2,"name":"Renaming a Microsoft Team"}]},{"@type":"WebSite","@id":"https:\/\/regroove.ca\/stellark\/#website","url":"https:\/\/regroove.ca\/stellark\/","name":"Stephanie Kahlam","description":"Microsoft 365 and SMB.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/regroove.ca\/stellark\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/regroove.ca\/stellark\/#\/schema\/person\/175e89cb69612178b2ac838c0bab6149","name":"Stephanie Kahlam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/regroove.ca\/stellark\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/398b95e23dc9eaf37a780b86a239b485?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/398b95e23dc9eaf37a780b86a239b485?s=96&d=mm&r=g","caption":"Stephanie Kahlam"},"url":"https:\/\/regroove.ca\/stellark\/author\/skahlam\/"}]}},"_links":{"self":[{"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/posts\/1123"}],"collection":[{"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/comments?post=1123"}],"version-history":[{"count":10,"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/posts\/1123\/revisions"}],"predecessor-version":[{"id":1386,"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/posts\/1123\/revisions\/1386"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/media\/970"}],"wp:attachment":[{"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/media?parent=1123"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/categories?post=1123"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/regroove.ca\/stellark\/wp-json\/wp\/v2\/tags?post=1123"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}