Skip to content

Latest commit

 

History

History
60 lines (50 loc) · 2.75 KB

File metadata and controls

60 lines (50 loc) · 2.75 KB
title sharedWithChannelTeamInfo resource type
description Represents information for a team with which a channel is shared.
author devjha-ms
ms.localizationpriority high
ms.subservice teams
doc_type resourcePageType
ms.date 07/22/2024

sharedWithChannelTeamInfo resource type

Namespace: microsoft.graph

Represents information for a team with which a channel is shared. A team can be shared multiple channels.

Inherits from teamInfo.

Methods

Method Return type Description
List teams sharing a channel sharedWithChannelTeamInfo collection Get the list of teams that has been shared a specified channel.
Get team sharing a channel sharedWithChannelTeamInfo Get a team which has been shared a specified channel.
Unshare channel with team None Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource.
List allowed members conversationMember collection Get the list of conversationMembers who can access a shared channel.

Properties

Property Type Description
displayName String The name of the team. Inherited from teamInfo.
id String The unique identifier for the team. Read-only.
isHostTeam Boolean Indicates whether the team is the host of the channel.
tenantId String The ID of the Microsoft Entra tenant. Inherited from teamInfo.

Relationships

Relationship Type Description
allowedMembers conversationMember collection A collection of team members who have access to the shared channel.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.sharedWithChannelTeamInfo",
  "displayName": "String",
  "id": "String (identifier)",
  "isHostTeam": "Boolean",
  "tenantId": "String"
}