channelSummary resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Contains information about a channel in Microsoft Teams, including numbers of guests, members, and owners, and whether the channel includes members from other tenants.
Properties
Property | Type | Description |
---|---|---|
guestsCount | Int32 | Count of guests in a channel. |
hasMembersFromOtherTenants | Boolean | Indicates whether external members are included on the channel. |
membersCount | Int32 | Count of members in a channel. |
ownersCount | Int32 | Count of owners in a channel. |
JSON representation
The following JSON representation shows the resource type.
{
"guestsCount": "Integer",
"hasMembersFromOtherTenants": "Boolean",
"membersCount": "Integer",
"ownersCount": "Integer"
}