Update team (properties)
documentedUpdate properties of a specific Team (e.g., description, visibility, settings). ([manageengine.com](https://www.manageengine.com/microsoft-365-management-reporting/graph-api/how-to-update-properties-of-team-using-microsoft-graph.html?utm_source=openai))
PATCH /teams/{team-id}Teamsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://graph.microsoft.com/v1.0/teams/{{$team_id}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"displayName": "{{$displayName}}", "description": "{{$description}}", "visibility": "{{$visibility}}"}'