What is the type of https://xxx.sharepoint.com/teams/abc

captain_atharv 511 Reputation points
2023-05-15T07:20:34.2766667+00:00

Hi,

I'm working on integrating partner Sharepoint using graph APIs. For site details, I was provided the Sharepoint URL in format of https://xxx.sharepoint.com/teams/abc

I have only seen Sharepoint site URLs in format of https://xxx.sharepoint.com/sites/abc and I'm not aware what /teams/abc is. When asked about, partner came back with it is a Standalone Site but I'm not sure what it means as well.

Can someone help me with what this is and how can I create one?

Microsoft 365 and Office SharePoint Development
Microsoft Security Microsoft Graph
0 comments No comments
{count} votes

Accepted answer
  1. RaytheonXie_MSFT 40,471 Reputation points Microsoft External Staff
    2023-05-16T03:02:28.46+00:00

    Hi @captain_atharv

    You can create the sites by following steps

    1. Go to admin center first
    2. Click Create and choose other options

    User's image

    1. Enter your site name and choose /teams/ like following pic

    User's image

    Finally you will create a site which url is like https://xxx.sharepoint.com/teams/abc


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. msft-gu 1,355 Reputation points
    2023-05-16T17:00:32.3666667+00:00

    Hi @captain_atharv

    Good afternoon and thank you for your question!

    To know what type of SharePoint Online template was used in creating the site, connect to SharePoint Online Management Shell using PowerShell (Install the module first if it is not installed)

    https://learn.microsoft.com/en-us/powershell/sharepoint/sharepoint-online/connect-sharepoint-online

    Run the following:

    #Connect to SharePoint Online Management Shell

    Connect-SPOService -URL https://yourdomain-admin.sharepoint.com

    #Get the site template (type) of the site

    Get-SPOSite -identity https://yourdomain.sharepoint.com/sites/thespecificsite | Select Template

    #Get the result of Template and try to find the type under this 3rd party site that might help you:

    SharePoint Online Site Template ID List

    https://www.technologytobusiness.com/microsoft-sharepoint/sharepoint-online-site-template-id

    For creating a site, please follow these steps on the following article:

    https://support.microsoft.com/en-us/office/create-a-site-in-sharepoint-4d1e11bf-8ddc-499d-b889-2b48d10b1ce8

    Please let me know if you have any question or clarification, I will be more than glad to assist you further. If none, please Upvote this answer and Accept it as an answer. Have a great day ahead! 😊

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.