Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 428 Bytes

File metadata and controls

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

$params = @{
	homeAddress = @{
		street = "123 Some street"
		city = "Seattle"
		state = "WA"
		postalCode = "98121"
	}
	birthday = [System.DateTime]::Parse("1974-07-22")
}

# A UPN can also be used as -UserId.
Update-MgUserContact -UserId $userId -ContactId $contactId -BodyParameter $params