Delete Schemas
The Id is required for deletes. Delete updategrams have a before block and an empty after block. This declares that the item specified in the before block is to be deleted.
Delete Updategram Instance
Below is an instance of a delete request.
<ns0:parameters xmlns:ns0="http://www.rssbus.com/NetSuiteProvider">
<ns0:sync>
<ns0:before>
<ns0:Account Id="1"></ns0:Account>
</ns0:before>
<ns0:after></ns0:after>
</ns0:sync>
</ns0:parameters>
Delete Updategram Schema
Below is a delete schema. The response contains the number of affected rows.
<?xml version="1.0" encoding="utf-16" ?>
<xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.rssbus.com/NetSuiteProvider" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="parameters">
<xs:complexType>
<xs:sequence>
<xs:element name="sync">
<xs:complexType>
<xs:sequence>
<xs:element name="before">
<xs:complexType>
<xs:sequence>
<xs:element name="Account">
<xs:complexType>
<xs:attribute name="Id" type="xs:string" />
<xs:attribute name="InternalId" type="xs:string" />
<xs:attribute name="AcctName" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>