exam questions

Exam MS-600 All Questions

View all questions & answers for the MS-600 exam

Exam MS-600 topic 2 question 28 discussion

Actual exam question from Microsoft's MS-600
Question #: 28
Topic #: 2
[All MS-600 Questions]

HOTSPOT -
You have a Microsoft 365 tenant that contains a group named Group1. Group1 is configured as shown in the following table.

You need to create a Microsoft Teams team for Group1. The team must contain two channels named Events and Projects.
How should you complete the Microsoft Graph API operation? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:
Box 1: POST -
Example, create a team from group:
POST https://graph.microsoft.com/v1.0/teams

Content-Type: application/json -
{
"[email protected]": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')",
"[email protected]": "https://graph.microsoft.com/v1.0/groups('71392b2f-1765-406e-86af-5907d9bdb2ab')"
}
Box 2: "[email protected]": "https://graph.microsoft.com/v1.0/groups..
Reference:
https://docs.microsoft.com/en-us/graph/api/team-post

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Labani1987
Highly Voted 11 months, 3 weeks ago
Create Team Endpoint => POST https://graph.microsoft.com/v1.0/teams Create Team from Group Endpoint => PUT https://graph.microsoft.com/v1.0/groups/{id}/team As snippet shows the 1st endpoint, it is POST
upvoted 5 times
Labani1987
11 months, 3 weeks ago
https://learn.microsoft.com/en-us/graph/api/team-post?view=graph-rest-1.0&tabs=http#example-4-create-a-team-from-group POST https://graph.microsoft.com/v1.0/teams Content-Type: application/json { "[email protected]": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')", "[email protected]": "https://graph.microsoft.com/v1.0/groups('71392b2f-1765-406e-86af-5907d9bdb2ab')" }
upvoted 4 times
...
...
Gopher2
Most Recent 12 months ago
its PUT no POST
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...