Delete Schemas
Executing a Delete Updategram
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 Instance
Below is an instance of a delete request.
<ns0:parameters xmlns:ns0="http://www.cdata.com/GoogleContactsProvider/2020"> <ns0:sync> <ns0:before> <ns0:[My Contacts] Id="300000002693011"></ns0:[My Contacts]> </ns0:before> <ns0:after></ns0:after> </ns0:sync> </ns0:parameters>
Delete 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.cdata.com/GoogleContactsProvider/2020" 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="[My Contacts]"> <xs:complexType> <xs:attribute name="Id" type="xs:string" /> <xs:attribute name="Id" type="xs:string" /> <xs:attribute name="Fullname" 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>