Delete Field-Related Operations

The following code shows sample input and output XML for field-related DELETE 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:SiebelHouseholdDelete_Input>
		<hous:ListOfHouseholdInterface>
   		<hous:Household>
      <hous:EDListOfHouseholdName/>
      	  <HouseholdId>ASDQ-1264</HouseholdId>
    </hous:Household>
		</hous:ListOfHouseholdInterface>
	</asi:SiebelHouseholdDelete_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:SiebelHouseholdDelete_Output xmlns:ns="http://example.com/asi/">
		<ListOfHouseholdInterface xmlns="http://www.example.com/xml/
Household%20Interface">
   		<Household operation="delete">
      		<HouseholdId>ASDQ-1264</HouseholdId>
      		<IntegrationId/>
   		</Household>
		</ListOfHouseholdInterface>
	</ns:SiebelHouseholdDelete_Output>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>