Table of contents:

Introduction

UpdateDynamicItem is one of the SOAP actions the Address Book Service provides.

Update one or more dynamic items associated with the Address Book.

Client/Request

The template used in this action is described on the Address Book Service main page.

UpdateDynamicItem

This element has only one attribute:

abId

This element contains your Address Book Service GUID.

dynamicItems

This element contains one or multiple <DynamicItem> elements.

DynamicItem

This element has only one attribute:

This element has four children:

Notifications

This element contains one or multiple <NotificationData> elements.

NotificationData

This element has five children:

StoreService

This element has four children:

Info

This element has three children:

Handle

This element has three children:

Server/Response

The template used in this action is described on the Address Book Service main page.

UpdateDynamicItemResponse

This empty element has only one attribute:

Examples

Client/Request

POST /abservice/abservice.asmx HTTP/1.1
SOAPAction: http://www.msn.com/webservices/AddressBook/UpdateDynamicItem
Cache-Control: no-cache
Content-Type: text/xml; charset=utf-8
Content-Length: 1833

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
>
	<soap:Header>
		<ABApplicationHeader xmlns="http://www.msn.com/webservices/AddressBook">
			<ApplicationId>AAD9B99B-58E6-4F23-B975-D9EC1F9EC24A</ApplicationId>
			<IsMigration>false</IsMigration>
			<PartnerScenario>RoamingIdentityChanged</PartnerScenario>
		</ABApplicationHeader>
		<ABAuthHeader xmlns="http://www.msn.com/webservices/AddressBook">
			<ManagedGroupRequest>false</ManagedGroupRequest>
			<TicketToken>t=ticket&amp;p=profile</TicketToken>
		</ABAuthHeader>
	</soap:Header>
	<soap:Body>
		<UpdateDynamicItem xmlns="http://www.msn.com/webservices/AddressBook">
			<abId>00000000-0000-0000-0000-000000000000</abId>
			<dynamicItems>
				<DynamicItem xsi:type="PassportDynamicItem">
					<Type>Passport</Type>
					<PassportName>example@hotmail.com</PassportName>
					<Notifications>
						<NotificationData>
							<StoreService>
								<Info>
									<Handle>
										<Id>0</Id>
										<Type>Profile</Type>
										<ForeignId>MyProfile</ForeignId>
									</Handle>
									<InverseRequired>false</InverseRequired>
									<IsBot>false</IsBot>
								</Info>
								<Changes />
								<LastChange>0001-01-01T00:00:00</LastChange>
								<Deleted>false</Deleted>
							</StoreService>
							<Status>Exist Access</Status>
							<LastChanged>2026-02-08T18:10:16.2824158-05:00</LastChanged>
							<Gleam>false</Gleam>
							<InstanceId>0</InstanceId>
						</NotificationData>
					</Notifications>
					<Changes>Notifications</Changes>
				</DynamicItem>
			</dynamicItems>
		</UpdateDynamicItem>
	</soap:Body>
</soap:Envelope>

Server/Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: 727

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
	<soap:Header>
		<ServiceHeader xmlns="http://www.msn.com/webservices/AddressBook">
			<Version>12.01.1111.0000</Version>
			<CacheKey>12r1;MjAyNi0wMi0wOFQxODoxMzozNS41MTFa</CacheKey>
			<CacheKeyChanged>true</CacheKeyChanged>
			<PreferredHostName>contacts.example.com</PreferredHostName>
			<SessionId>ecfaf8c7-e388-4571-8641-b061a0ac4bdc</SessionId>
		</ServiceHeader>
	</soap:Header>
	<soap:Body>
		<UpdateDynamicItemResponse xmlns="http://www.msn.com/webservices/AddressBook" />
	</soap:Body>
</soap:Envelope>