Create a new MIcrosoft Teams team
We have two options:
- using the
o365group add and teams add - that is first create the group and then add a team to it. Which is how Microsoft Graph works and how the API's is exposed.
command; teams add --groupId <groupId> [..additional settings]
groupId: id of the group
OR
- using just
teams add which would optionally take a group id as parameter, if a group exists it adds the team to that group otherwise it creates a new group and add the team to that. This is a more complex and non-atomic operation.
command; teams add -[-groupId <groupId>] [..additional settings]
groupId: id of the group
Thoughts?
Create a new MIcrosoft Teams team
We have two options:
o365group addandteams add- that is first create the group and then add a team to it. Which is how Microsoft Graph works and how the API's is exposed.command;
teams add --groupId <groupId> [..additional settings]groupId: id of the group
OR
teams addwhich would optionally take a group id as parameter, if a group exists it adds the team to that group otherwise it creates a new group and add the team to that. This is a more complex and non-atomic operation.command;
teams add -[-groupId <groupId>] [..additional settings]groupId: id of the group
Thoughts?