Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 566 Bytes

File metadata and controls

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

$params = @{
	post = @{
		body = @{
			contentType = "text"
			content = "Which quarter does that file cover? See my attachment."
		}
		attachments = @(
			@{
				"@odata.type" = "#microsoft.graph.fileAttachment"
				name = "Another file as attachment"
				contentBytes = "VGhpcyBpcyBhIGZpbGUgdG8gYmUgYXR0YWNoZWQu"
			}
		)
	}
}

Invoke-MgReplyGroupThread -GroupId $groupId -ConversationThreadId $conversationThreadId -BodyParameter $params