| 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