Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 583 Bytes

File metadata and controls

27 lines (22 loc) · 583 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Teams

$params = @{
	"@odata.type" = "#Microsoft.Graph.channel"
	membershipType = "private"
	displayName = "My First Private Channel"
	description = "This is my first private channels"
	members = @(
		@{
			"@odata.type" = "#microsoft.graph.aadUserConversationMember"
			"user@odata.bind" = "https://graph.microsoft.com/v1.0/users('62855810-484b-4823-9e01-60667f8b12ae')"
			roles = @(
			"owner"
		)
	}
)
}

New-MgTeamChannel -TeamId $teamId -BodyParameter $params