2024-10-29 17:58:42 -04:00
|
|
|
# Introduction
|
|
|
|
`ABContactUpdate` is one of the SOAP actions the [Address Book Service](../abservice.md) provides.
|
|
|
|
|
|
|
|
Modifies information about a contact from the Forward List (FL).
|
|
|
|
For modifying a contact's information from any other list, see the [Contact Sharing Service](../sharingservice.md).
|
|
|
|
|
|
|
|
# Client/Request
|
|
|
|
The template used in this action is described on the [Address Book Service](../abservice.md) main page.
|
|
|
|
|
2024-10-30 17:33:59 -04:00
|
|
|
## ABContactUpdate
|
2024-10-29 17:58:42 -04:00
|
|
|
This element has only one attribute:
|
|
|
|
* `xmlns`: Is always set to `http://www.msn.com/webservices/AddressBook`.
|
|
|
|
|
|
|
|
### abId
|
|
|
|
This element contains your [Address Book Service](../abservice.md) GUID.
|
|
|
|
|
|
|
|
### contacts
|
2024-10-30 17:33:59 -04:00
|
|
|
This element contains one or multiple `<Contact>` elements.
|
2024-10-29 17:58:42 -04:00
|
|
|
|
|
|
|
#### Contact
|
|
|
|
This element has only one attribute:
|
|
|
|
* `xmlns`: Is always set to `http://www.msn.com/webservices/AddressBook`.
|
|
|
|
|
|
|
|
##### contactId
|
|
|
|
This element only contains the GUID of the contact you would like to modify.
|
|
|
|
|
|
|
|
##### contactInfo
|
|
|
|
For more information about this element, read the [`<contactInfo>`](contactinfo.md) article.
|
|
|
|
|
|
|
|
The most relevant children are:
|
|
|
|
* `<displayName>`: The new display name for this contact.
|
2024-10-30 17:33:59 -04:00
|
|
|
* `<isMessengerUser>`: If this is set to `false`, this user is to be treated as a
|
|
|
|
e-mail contact instead of an Instant Messaging Contact.
|
2024-10-29 17:58:42 -04:00
|
|
|
|
|
|
|
##### propertiesChanged
|
|
|
|
This element only contains the space delimited list of updated items in `<contactInfo>`.
|
|
|
|
The valid values are the following:
|
|
|
|
* `DisplayName`
|
2024-10-30 17:33:59 -04:00
|
|
|
* `IsMessengerUser`
|
2024-10-29 17:58:42 -04:00
|
|
|
* `ContactFirstName`
|
|
|
|
* `ContactLastName`
|
|
|
|
* `Comment`
|
|
|
|
* `MiddleName`
|
|
|
|
* `ContactPrimaryEmailType`
|
|
|
|
* `ContactEmail`
|
|
|
|
* `ContactLocation`
|
|
|
|
* `ContactPhone`
|
|
|
|
* `ContactWebSite`
|
|
|
|
* `Annotation`
|
|
|
|
|
|
|
|
# Server/Response
|
|
|
|
The template used in this action is described on the [Address Book Service](../abservice.md) main page.
|
|
|
|
|
|
|
|
## ABContactUpdate
|
|
|
|
This empty element has only one attribute:
|
|
|
|
* `xmlns`: Is always set to `http://www.msn.com/webservices/AddressBook`.
|