Search code examples
microsoft-graph-apimicrosoft-teamsmicrosoft-graph-teams

How to get user language settings in Teams?


Is it possible to retrieve the language setting of a user inside Teams using the Microsoft Graph REST API v1.0?

enter image description here


Solution

  • There is no such specific API for teams language ,you can use PATCH method to update a subset of the properties of a user's regional and language settings https://graph.microsoft.com/beta/me/settings/regionalandlanguagesettings Content-type: application/json

    Please see the docs for more info - https://learn.microsoft.com/en-us/graph/api/regionalandlanguagesettings-update?view=graph-rest-beta&tabs=http

    Hope this helps.