Update-MgBetaUserContact
Update the navigation property contacts in users
Note
To view the v1.0 release of this cmdlet, view Update-MgUserContact
Syntax
Update-MgBetaUserContact
-ContactId <String>
-UserId <String>
[-ResponseHeadersVariable <String>]
[-AdditionalProperties <Hashtable>]
[-AssistantName <String>]
[-Birthday <DateTime>]
[-Categories <String[]>]
[-ChangeKey <String>]
[-Children <String[]>]
[-CompanyName <String>]
[-CreatedDateTime <DateTime>]
[-Department <String>]
[-DisplayName <String>]
[-EmailAddresses <IMicrosoftGraphTypedEmailAddress[]>]
[-Extensions <IMicrosoftGraphExtension[]>]
[-FileAs <String>]
[-Flag <IMicrosoftGraphFollowupFlag>]
[-Gender <String>]
[-Generation <String>]
[-GivenName <String>]
[-Id <String>]
[-ImAddresses <String[]>]
[-Initials <String>]
[-IsFavorite]
[-JobTitle <String>]
[-LastModifiedDateTime <DateTime>]
[-Manager <String>]
[-MiddleName <String>]
[-MultiValueExtendedProperties <IMicrosoftGraphMultiValueLegacyExtendedProperty[]>]
[-NickName <String>]
[-OfficeLocation <String>]
[-ParentFolderId <String>]
[-PersonalNotes <String>]
[-Phones <IMicrosoftGraphPhone[]>]
[-Photo <IMicrosoftGraphProfilePhoto>]
[-PostalAddresses <IMicrosoftGraphPhysicalAddress[]>]
[-Profession <String>]
[-SingleValueExtendedProperties <IMicrosoftGraphSingleValueLegacyExtendedProperty[]>]
[-SpouseName <String>]
[-Surname <String>]
[-Title <String>]
[-Websites <IMicrosoftGraphWebsite[]>]
[-WeddingAnniversary <DateTime>]
[-YomiCompanyName <String>]
[-YomiGivenName <String>]
[-YomiSurname <String>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Update-MgBetaUserContact
-ContactId <String>
-UserId <String>
-BodyParameter <IMicrosoftGraphContact>
[-ResponseHeadersVariable <String>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Update-MgBetaUserContact
-InputObject <IPersonalContactsIdentity>
[-ResponseHeadersVariable <String>]
[-AdditionalProperties <Hashtable>]
[-AssistantName <String>]
[-Birthday <DateTime>]
[-Categories <String[]>]
[-ChangeKey <String>]
[-Children <String[]>]
[-CompanyName <String>]
[-CreatedDateTime <DateTime>]
[-Department <String>]
[-DisplayName <String>]
[-EmailAddresses <IMicrosoftGraphTypedEmailAddress[]>]
[-Extensions <IMicrosoftGraphExtension[]>]
[-FileAs <String>]
[-Flag <IMicrosoftGraphFollowupFlag>]
[-Gender <String>]
[-Generation <String>]
[-GivenName <String>]
[-Id <String>]
[-ImAddresses <String[]>]
[-Initials <String>]
[-IsFavorite]
[-JobTitle <String>]
[-LastModifiedDateTime <DateTime>]
[-Manager <String>]
[-MiddleName <String>]
[-MultiValueExtendedProperties <IMicrosoftGraphMultiValueLegacyExtendedProperty[]>]
[-NickName <String>]
[-OfficeLocation <String>]
[-ParentFolderId <String>]
[-PersonalNotes <String>]
[-Phones <IMicrosoftGraphPhone[]>]
[-Photo <IMicrosoftGraphProfilePhoto>]
[-PostalAddresses <IMicrosoftGraphPhysicalAddress[]>]
[-Profession <String>]
[-SingleValueExtendedProperties <IMicrosoftGraphSingleValueLegacyExtendedProperty[]>]
[-SpouseName <String>]
[-Surname <String>]
[-Title <String>]
[-Websites <IMicrosoftGraphWebsite[]>]
[-WeddingAnniversary <DateTime>]
[-YomiCompanyName <String>]
[-YomiGivenName <String>]
[-YomiSurname <String>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Update-MgBetaUserContact
-InputObject <IPersonalContactsIdentity>
-BodyParameter <IMicrosoftGraphContact>
[-ResponseHeadersVariable <String>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Update the navigation property contacts in users
Examples
Example 1: Code snippet
Import-Module Microsoft.Graph.Beta.PersonalContacts
$params = @{
emailAddresses = @(
@{
type = "personal"
name = "Pavel Bansky"
address = "pavelb@adatum.onmicrosoft.com"
}
@{
address = "pavelb@fabrikam.onmicrosoft.com"
name = "Pavel Bansky"
type = "other"
otherLabel = "Volunteer work"
}
)
}
# A UPN can also be used as -UserId.
Update-MgBetaUserContact -UserId $userId -ContactId $contactId -BodyParameter $params
This example shows how to use the Update-MgBetaUserContact Cmdlet.
To learn about permissions for this resource, see the permissions reference.
Parameters
-AdditionalProperties
Additional Parameters
Type: | Hashtable |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AssistantName
The name of the contact's assistant.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Birthday
The contact's birthday. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
Type: | DateTime |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-BodyParameter
contact To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
Type: | IMicrosoftGraphContact |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Categories
The categories associated with the item.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ChangeKey
Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Children
The names of the contact's children.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-CompanyName
The name of the contact's company.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Confirm
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ContactId
The unique identifier of contact
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-CreatedDateTime
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
Type: | DateTime |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Department
The contact's department.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-DisplayName
The contact's display name. You can specify the display name in a create or update operation. Later updates to other properties might cause an automatically generated value to overwrite the displayName value you specified. To preserve a pre-existing value, always include it as displayName in an update operation.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-EmailAddresses
The contact's email addresses. To construct, see NOTES section for EMAILADDRESSES properties and create a hash table.
Type: | IMicrosoftGraphTypedEmailAddress[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Extensions
The collection of open extensions defined for the contact. Nullable. To construct, see NOTES section for EXTENSIONS properties and create a hash table.
Type: | IMicrosoftGraphExtension[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-FileAs
The name the contact is filed under.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Flag
followupFlag To construct, see NOTES section for FLAG properties and create a hash table.
Type: | IMicrosoftGraphFollowupFlag |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Gender
The contact's gender.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Generation
The contact's suffix.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-GivenName
The contact's given name.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Headers
Optional headers that will be added to the request.
Type: | IDictionary |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Id
The unique identifier for an entity. Read-only.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ImAddresses
The contact's instant messaging (IM) addresses.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Initials
The contact's initials.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-InputObject
Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
Type: | IPersonalContactsIdentity |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-IsFavorite
.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JobTitle
The contact's job title.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-LastModifiedDateTime
The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
Type: | DateTime |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Manager
The name of the contact's manager.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MiddleName
The contact's middle name.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MultiValueExtendedProperties
The collection of multi-value extended properties defined for the contact. Read-only. Nullable. To construct, see NOTES section for MULTIVALUEEXTENDEDPROPERTIES properties and create a hash table.
Type: | IMicrosoftGraphMultiValueLegacyExtendedProperty[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-NickName
The contact's nickname.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-OfficeLocation
The location of the contact's office.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ParentFolderId
The ID of the contact's parent folder.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PersonalNotes
The user's notes about the contact.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Phones
Phone numbers associated with the contact, for example, home phone, mobile phone, and business phone. To construct, see NOTES section for PHONES properties and create a hash table.
Type: | IMicrosoftGraphPhone[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Photo
profilePhoto To construct, see NOTES section for PHOTO properties and create a hash table.
Type: | IMicrosoftGraphProfilePhoto |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PostalAddresses
Addresses associated with the contact, for example, home address and business address. To construct, see NOTES section for POSTALADDRESSES properties and create a hash table.
Type: | IMicrosoftGraphPhysicalAddress[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Profession
The contact's profession.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ProgressAction
{{ Fill ProgressAction Description }}
Type: | ActionPreference |
Aliases: | proga |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ResponseHeadersVariable
Optional Response Headers Variable.
Type: | String |
Aliases: | RHV |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SingleValueExtendedProperties
The collection of single-value extended properties defined for the contact. Read-only. Nullable. To construct, see NOTES section for SINGLEVALUEEXTENDEDPROPERTIES properties and create a hash table.
Type: | IMicrosoftGraphSingleValueLegacyExtendedProperty[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SpouseName
The name of the contact's spouse/partner.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Surname
The contact's surname.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Title
The contact's title.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-UserId
The unique identifier of user
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Websites
Web sites associated with the contact. To construct, see NOTES section for WEBSITES properties and create a hash table.
Type: | IMicrosoftGraphWebsite[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WeddingAnniversary
The contact's wedding anniversary.
Type: | DateTime |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-YomiCompanyName
The phonetic Japanese company name of the contact.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-YomiGivenName
The phonetic Japanese given name (first name) of the contact.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-YomiSurname
The phonetic Japanese surname (last name) of the contact.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphContact
Microsoft.Graph.Beta.PowerShell.Models.IPersonalContactsIdentity
System.Collections.IDictionary
Outputs
Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphContact
Notes
COMPLEX PARAMETER PROPERTIES
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
BODYPARAMETER <IMicrosoftGraphContact>
: contact
[(Any) <Object>]
: This indicates any property can be added to this object.[Categories <String-
[]>]
: The categories associated with the item.[ChangeKey <String>]
: Identifies the version of the item. Every time the item is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.[CreatedDateTime <DateTime?>]
: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z[LastModifiedDateTime <DateTime?>]
: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z[Id <String>]
: The unique identifier for an entity. Read-only.[AssistantName <String>]
: The name of the contact's assistant.[Birthday <DateTime?>]
: The contact's birthday. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z[Children <String-
[]>]
: The names of the contact's children.[CompanyName <String>]
: The name of the contact's company.[Department <String>]
: The contact's department.[DisplayName <String>]
: The contact's display name. You can specify the display name in a create or update operation. Later updates to other properties might cause an automatically generated value to overwrite the displayName value you specified. To preserve a pre-existing value, always include it as displayName in an update operation.[EmailAddresses <IMicrosoftGraphTypedEmailAddress-
[]>]
: The contact's email addresses.[Address <String>]
: The email address of an entity instance.[Name <String>]
: The display name of an entity instance.[OtherLabel <String>]
: To specify a custom type of email address, set type to other, and assign otherLabel to a custom string. For example, you may use a specific email address for your volunteer activities. Set type to other, and set otherLabel to a custom string such as Volunteer work.[Type <String>]
: emailType
[Extensions <IMicrosoftGraphExtension-
[]>]
: The collection of open extensions defined for the contact. Nullable.[Id <String>]
: The unique identifier for an entity. Read-only.
[FileAs <String>]
: The name the contact is filed under.[Flag <IMicrosoftGraphFollowupFlag>]
: followupFlag[(Any) <Object>]
: This indicates any property can be added to this object.[CompletedDateTime <IMicrosoftGraphDateTimeZone>]
: dateTimeTimeZone[(Any) <Object>]
: This indicates any property can be added to this object.[DateTime <String>]
: A single point of time in a combined date and time representation ({date}T{time}). For example, '2019-04-16T09:00:00'.[TimeZone <String>]
: Represents a time zone, for example, 'Pacific Standard Time'. See below for possible values.
[DueDateTime <IMicrosoftGraphDateTimeZone>]
: dateTimeTimeZone[FlagStatus <String>]
: followupFlagStatus[StartDateTime <IMicrosoftGraphDateTimeZone>]
: dateTimeTimeZone
[Gender <String>]
: The contact's gender.[Generation <String>]
: The contact's suffix.[GivenName <String>]
: The contact's given name.[ImAddresses <String-
[]>]
: The contact's instant messaging (IM) addresses.[Initials <String>]
: The contact's initials.[IsFavorite <Boolean?>]
:[JobTitle <String>]
: The contact's job title.[Manager <String>]
: The name of the contact's manager.[MiddleName <String>]
: The contact's middle name.[MultiValueExtendedProperties <IMicrosoftGraphMultiValueLegacyExtendedProperty-
[]>]
: The collection of multi-value extended properties defined for the contact. Read-only. Nullable.[Id <String>]
: The unique identifier for an entity. Read-only.[Value <String-
[]>]
: A collection of property values.
[NickName <String>]
: The contact's nickname.[OfficeLocation <String>]
: The location of the contact's office.[ParentFolderId <String>]
: The ID of the contact's parent folder.[PersonalNotes <String>]
: The user's notes about the contact.[Phones <IMicrosoftGraphPhone-
[]>]
: Phone numbers associated with the contact, for example, home phone, mobile phone, and business phone.[Number <String>]
: The phone number.[Type <String>]
: phoneType
[Photo <IMicrosoftGraphProfilePhoto>]
: profilePhoto[(Any) <Object>]
: This indicates any property can be added to this object.[Id <String>]
: The unique identifier for an entity. Read-only.[Height <Int32?>]
: The height of the photo. Read-only.[Width <Int32?>]
: The width of the photo. Read-only.
[PostalAddresses <IMicrosoftGraphPhysicalAddress-
[]>]
: Addresses associated with the contact, for example, home address and business address.[City <String>]
: The city.[CountryOrRegion <String>]
: The country or region. It's a free-format string value, for example, 'United States'.[PostOfficeBox <String>]
: The post office box number.[PostalCode <String>]
: The postal code.[State <String>]
: The state.[Street <String>]
: The street.[Type <String>]
: physicalAddressType
[Profession <String>]
: The contact's profession.[SingleValueExtendedProperties <IMicrosoftGraphSingleValueLegacyExtendedProperty-
[]>]
: The collection of single-value extended properties defined for the contact. Read-only. Nullable.[Id <String>]
: The unique identifier for an entity. Read-only.[Value <String>]
: A property value.
[SpouseName <String>]
: The name of the contact's spouse/partner.[Surname <String>]
: The contact's surname.[Title <String>]
: The contact's title.[Websites <IMicrosoftGraphWebsite-
[]>]
: Web sites associated with the contact.[Address <String>]
: The URL of the website.[DisplayName <String>]
: The display name of the web site.[Type <String>]
: websiteType
[WeddingAnniversary <DateTime?>]
: The contact's wedding anniversary.[YomiCompanyName <String>]
: The phonetic Japanese company name of the contact.[YomiGivenName <String>]
: The phonetic Japanese given name (first name) of the contact.[YomiSurname <String>]
: The phonetic Japanese surname (last name) of the contact.
EMAILADDRESSES <IMicrosoftGraphTypedEmailAddress- []
>: The contact's email addresses.
[Address <String>]
: The email address of an entity instance.[Name <String>]
: The display name of an entity instance.[OtherLabel <String>]
: To specify a custom type of email address, set type to other, and assign otherLabel to a custom string. For example, you may use a specific email address for your volunteer activities. Set type to other, and set otherLabel to a custom string such as Volunteer work.[Type <String>]
: emailType
EXTENSIONS <IMicrosoftGraphExtension- []
>: The collection of open extensions defined for the contact.
Nullable.
[Id <String>]
: The unique identifier for an entity. Read-only.
FLAG <IMicrosoftGraphFollowupFlag>
: followupFlag
[(Any) <Object>]
: This indicates any property can be added to this object.[CompletedDateTime <IMicrosoftGraphDateTimeZone>]
: dateTimeTimeZone[(Any) <Object>]
: This indicates any property can be added to this object.[DateTime <String>]
: A single point of time in a combined date and time representation ({date}T{time}). For example, '2019-04-16T09:00:00'.[TimeZone <String>]
: Represents a time zone, for example, 'Pacific Standard Time'. See below for possible values.
[DueDateTime <IMicrosoftGraphDateTimeZone>]
: dateTimeTimeZone[FlagStatus <String>]
: followupFlagStatus[StartDateTime <IMicrosoftGraphDateTimeZone>]
: dateTimeTimeZone
INPUTOBJECT <IPersonalContactsIdentity>
: Identity Parameter
[ContactFolderId <String>]
: The unique identifier of contactFolder[ContactFolderId1 <String>]
: The unique identifier of contactFolder[ContactId <String>]
: The unique identifier of contact[ExtensionId <String>]
: The unique identifier of extension[UserId <String>]
: The unique identifier of user
MULTIVALUEEXTENDEDPROPERTIES <IMicrosoftGraphMultiValueLegacyExtendedProperty- []
>: The collection of multi-value extended properties defined for the contact.
Read-only.
Nullable.
[Id <String>]
: The unique identifier for an entity. Read-only.[Value <String-
[]>]
: A collection of property values.
PHONES <IMicrosoftGraphPhone- []
>: Phone numbers associated with the contact, for example, home phone, mobile phone, and business phone.
[Number <String>]
: The phone number.[Type <String>]
: phoneType
PHOTO <IMicrosoftGraphProfilePhoto>
: profilePhoto
[(Any) <Object>]
: This indicates any property can be added to this object.[Id <String>]
: The unique identifier for an entity. Read-only.[Height <Int32?>]
: The height of the photo. Read-only.[Width <Int32?>]
: The width of the photo. Read-only.
POSTALADDRESSES <IMicrosoftGraphPhysicalAddress- []
>: Addresses associated with the contact, for example, home address and business address.
[City <String>]
: The city.[CountryOrRegion <String>]
: The country or region. It's a free-format string value, for example, 'United States'.[PostOfficeBox <String>]
: The post office box number.[PostalCode <String>]
: The postal code.[State <String>]
: The state.[Street <String>]
: The street.[Type <String>]
: physicalAddressType
SINGLEVALUEEXTENDEDPROPERTIES <IMicrosoftGraphSingleValueLegacyExtendedProperty- []
>: The collection of single-value extended properties defined for the contact.
Read-only.
Nullable.
[Id <String>]
: The unique identifier for an entity. Read-only.[Value <String>]
: A property value.
WEBSITES <IMicrosoftGraphWebsite- []
>: Web sites associated with the contact.
[Address <String>]
: The URL of the website.[DisplayName <String>]
: The display name of the web site.[Type <String>]
: websiteType