Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs
Hi Jaejung,
Did you try using the -All parameter?
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi!,
I am trying to get all chat list from my Teams and add a particular user to each of the chat.
When I do 'list chat', it gets a list of chat but only 19 or 20 chat rooms. I have more than 100 chat rooms(not Teams channel) and I want list all of 100 chat rooms.
Is there any limitation to call the list of chat?
Thanks!!
Import-Module Microsoft.Graph.Teams
Connect-MgGraph -Scopes "User.Read.All", "Group.ReadWrite.All", "Chat.Create", "Chat.ReadWrite", "Chat.ReadBasic", "Chat.Read"
$userId = "******@elementsconnect.com"
Get-MgUserChat -UserId $userId -ExpandProperty "members"
Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs
An API that connects multiple Microsoft services, enabling data access and automation across platforms
Additional features, settings, or issues not covered by specific Microsoft Teams categories
Answer accepted by question author
Hi Jaejung,
Did you try using the -All parameter?