Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 315 Bytes

create-section-from-sectiongroup-powershell-snippets.md

File metadata and controls

16 lines (11 loc) · 315 Bytes
description
Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Notes

$params = @{
	displayName = "Section name"
}

# A UPN can also be used as -UserId.
New-MgUserOnenoteSectionGroupSection -UserId $userId -SectionGroupId $sectionGroupId -BodyParameter $params