Insert Link-Related Operations

The following code shows sample input and output XML for link-related INSERT operations.

Input

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:asi="http://example.com/asi/" xmlns:hous="http://www.example.com/xml/
Household%20Interface">
<soapenv:Header/>
<soapenv:Body>
<asi:SiebelHouseholdInsert_Input>
	<asi:StatusObject/>
		<hous:ListOfHouseholdInterface>
   		<hous:Household operation="insert">
      		<hous:HouseholdName>Aaron12</hous:HouseholdName>
      		<hous:HouseholdId>1-COQ1</hous:HouseholdId>
         		<hous:ListOfRelatedContact>
            		<hous:RelatedContact EDStartDate="12/12/2011" EDEndDate="">
               <ContactId>0V-19GBUM</ContactId>
             </hous:RelatedContact> 
             <hous:RelatedContact EDStartDate="12/12/2010" EDEndDate="12/11/2011">
               <ContactId>0V-19GBUM</ContactId>
             </hous:RelatedContact>
             <hous:RelatedContact EDStartDate="12/12/2003" EDEndDate="12/12/2004">
               <ContactId>0V-18PLL2</ContactId>
             </hous:RelatedContact>
             <hous:RelatedContact EDStartDate="12/12/2001" EDEndDate="12/12/2002">
               <ContactId>0V-18PLL2</ContactId>
             </hous:RelatedContact>
             <hous:RelatedContact EDStartDate="12/12/2005" EDEndDate="12/12/2006">
               <ContactId>0V-18PMMD</ContactId>
             </hous:RelatedContact>
             <hous:RelatedContact EDStartDate="12/12/2007" EDEndDate="12/12/2008">
               <ContactId>1-AJ3J</ContactId>
            </hous:RelatedContact>
         </hous:ListOfRelatedContact>
      </hous:Household>
  	 </hous:ListOfHouseholdInterface>
	</asi:SiebelHouseholdInsert_Input>
</soapenv:Body>
</soapenv:Envelope>

Output

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
	<ns:SiebelHouseholdInsert_Output xmlns:ns="http://example.com/asi/">
		<ListOfHouseholdInterface xmlns="http://www.example.com/xml/
      Household%20Interface">
   		<Household operation="insert">
      		<HouseholdId>1-COQ1</HouseholdId>
      		<IntegrationId/>
   		</Household>
		</ListOfHouseholdInterface>
	</ns:SiebelHouseholdInsert_Output>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>