Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 480 Bytes

File metadata and controls

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

$params = @{
	topic = "New Conversation Thread Topic"
	posts = @(
		@{
			body = @{
				contentType = "html"
				content = "this is body content"
			}
			newParticipants = @(
				@{
					emailAddress = @{
						name = "Alex Darrow"
						address = "alexd@contoso.com"
					}
				}
			)
		}
	)
}

New-MgGroupThread -GroupId $groupId -BodyParameter $params