Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 502 Bytes

File metadata and controls

22 lines (17 loc) · 502 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Bookings

$params = @{
	"@odata.type" = "#microsoft.graph.virtualEventRegistrationCustomQuestion"
	displayName = "What's your job position?"
	answerInputType = "multiChoice"
	answerChoices = @(
	"Software Engineer"
"Engineer Manager"
"Product Manager"
)
}

New-MgVirtualEventWebinarRegistrationConfigurationQuestion -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params