Teams bot API changes to fetch team or chat members
Note
- The deprecation process for
TeamsInfo.getMembers
andTeamsInfo.GetMembersAsync
APIs have started. Initially, they are heavily throttled to five requests per minute and return a maximum of 10K members per team. This results in the full roster not being returned as team size increases. - You must update to version 4.10 or higher of the Bot Framework SDK and switch to the paginated API endpoints, or the
TeamsInfo.GetMemberAsync
single user API. This also applies to your bot even if you are not directly using these APIs, as older SDKs call these APIs during membersAdded events. To view the list of upcoming changes, see API changes.
If you want to retrieve information for one or more members of a chat or team, you can use the Microsoft Teams bot APIs TeamsInfo.GetMembersAsync
for C# or TeamsInfo.getMembers
for TypeScript or Node.js APIs. For more information, see fetch roster or user profile.
These APIs have the following shortcomings:
- For large teams, performance is poor and timeouts are more likely: The maximum team size has grown considerably since Teams was released. As
GetMembersAsync
orgetMembers
returns the entire member list, it takes a long time for the API call to return for large teams, and it's common for the call to time out and you have to try again. - Getting profile details for a single user is difficult: To get the profile information for a single user, you have to retrieve the entire member list, and then search for the one you want. There's a helper function in the Bot Framework SDK to make it simpler, but it isn't efficient.
With the introduction of organization wide teams, there's a requirement to better align these APIs with Microsoft 365 privacy controls. Bots used in large teams are able to retrieve basic profile information similar to the User.ReadBasic.All
Microsoft Graph permission. Tenant administrators have a great deal of control over which apps and bots can be used in their tenant, but these settings are different from Microsoft Graph.
The following code provides a sample JSON representation of what is returned by Teams bot APIs:
[{
"id": "29:1GcS4EyB_oSI8A88XmWBN7NJFyMqe3QGnJdgLfFGkJnVelzRGos0bPbpsfJjcbAD22bmKc4GMbrY2g4JDrrA8vM06X1-cHHle4zOE6U4ttcc",
"name": "Anon1 (Guest)",
"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47",
"userRole": "anonymous"
}, {
"id": "29:1bSnHZ7Js2STWrgk6ScEErLk1Lp2zQuD5H2qQ960rtvstKp8tKLl-3r8b6DoW0QxZimuTxk_kupZ1DBMpvIQQUAZL-PNj0EORDvRZXy8kvWk",
"objectId": "76b0b09f-d410-48fd-993e-84da521a597b",
"givenName": "John",
"surname": "Patterson",
"email": "johnp@fabrikam.com",
"userPrincipalName": "johnp@fabrikam.com",
"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47",
"userRole": "user"
}, {
"id": "29:1URzNQM1x1PNMr1D7L5_lFe6qF6gEfAbkdG8_BUxOW2mTKryQqEZtBTqDt10-MghkzjYDuUj4KG6nvg5lFAyjOLiGJ4jzhb99WrnI7XKriCs",
"objectId": "6b7b3b2a-2c4b-4175-8582-41c9e685c1b5",
"givenName": "Rick",
"surname": "Stevens",
"email": "Rick.Stevens@fabrikam.com",
"userPrincipalName": "rstevens@fabrikam.com",
"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47",
"userRole": "user"
}]
API changes
Following are the upcoming API changes:
- A new API is created
TeamsInfo.GetPagedMembersAsync
for retrieving profile information for members of a chat or team. This API is now available with the Bot Framework version 4.8 or later SDK. For development in all other versions, use theGetConversationPagedMembers
method.
Note
Upgrade to the latest version of the Microsoft Bot Framework SDK as follows:
- Bot Framework SDK v3: Upgrade to version 3.30.2 or later.
- Bot Framework SDK v4: Upgrade to version 4.8 or later.
A new API is created
TeamsInfo.GetMemberAsync
for retrieving the profile information for a single user. It takes the ID of the team or chat and a UPN that isuserPrincipalName
, Microsoft Entra Object IDobjectId
, or the Teams user IDid
as parameters and returns the profile information for that user.Note
objectId
is changed toaadObjectId
to match what is called in theActivity
object of a Bot Framework message. The new API is available with version 4.8 or later of the Bot Framework SDK. It is also available in the Teams SDK extension Bot Framework 3.x. Meanwhile, you can use the REST endpoint.TeamsInfo.GetMembersAsync
in C# andTeamsInfo.getMembers
in TypeScript or Node.js is formally deprecated. Once the new API is available, you must update your bots to use it. This also applies to the underlying REST API that these APIs use.Bots can't proactively retrieve the
userPrincipalName
oremail
properties for members of a chat or team. Bots must use the Graph APIs to retrieve the required information. The newGetConversationPagedMembers
API can't return theuserPrincipalName
andemail
properties.Note
We recommend you to use the Graph API with an access token to retrieve information.
See also
Platform Docs