Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 575 Bytes

File metadata and controls

31 lines (26 loc) · 575 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Beta.Teams

$params = @{
	body = @{
		contentType = "html"
		content = "<at id="0">General</at>&nbsp;Hello there!"
	}
	mentions = @(
		@{
			id = 0
			mentionText = "General"
			mentioned = @{
				conversation = @{
					id = "19:0b50940236084d258c97b21bd01917b0@thread.skype"
					displayName = "General"
					conversationIdentityType = "channel"
				}
			}
		}
	)
}

New-MgBetaTeamChannelMessage -TeamId $teamId -ChannelId $channelId -BodyParameter $params