Clone MS Teams Groups as Admin

Ramki 816 Reputation points
2021-07-21T13:48:05.637+00:00

Hello Team

Am looking for a solution to cone the MS teams groups from one to another. li

i belive, there is no native method t clone from one teams groups to another , however i would like to check to clone the teams groups as mentioned in the below link

http://www.ktskumar.com/2021/06/clone-your-team-using-microsoft-graph-api/

any help?

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,002 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
3,250 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Prasad-MSFT 6,766 Reputation points Microsoft Vendor
    2021-07-30T13:13:45.207+00:00

    Hi @Ramki

    Follow this link to clone a MS Teams group using Graph API.

    Make sure to replace your 'MS Teams group ID' which you want to clone in place of {id} in below request call

    POST /teams/{id}/clone
    Content-Type: application/json

    Request Body:
    {
    "displayName": "xxxxxx",
    "description": "xxxxxx",
    "mailNickname": "xxxxxx",
    "partsToClone": "apps,tabs,settings,channels,members",
    "visibility": "public"
    }

    Thanks,

    Prasad Das


    If the response is helpful, please click "Accept Answer" and upvote it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.

    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.