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 Teams | Development
Microsoft Teams | Development
Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs
Microsoft Security | Microsoft Graph
{count} votes

1 answer

Sort by: Most helpful
  1. Prasad-MSFT 10,271 Reputation points Microsoft External Staff Moderator
    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' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.