deleteCompContact
This method allows deleting company contacts. To delete each of these items, the standard documented below must be followed.
Java class | |
---|---|
Request | web\wwwroot\ws\java\admin\DeleteCompContactRequestType.java |
Return | web\wwwroot\ws\java\admin\DeleteCompContactResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDCOMMERCIAL | X | Company ID. |
NMCONTACT | X | Contact name. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:admin">
<soapenv:Header/>
<soapenv:Body>
<urn:deleteCompContact>
<!--You may enter the following 2 items in any order-->
<urn:IDCOMMERCIAL>?</urn:IDCOMMERCIAL>
<urn:NMCONTACT>?</urn:NMCONTACT>
</urn:deleteCompContact>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: company contact is deleted. FAILURE: message regarding the error that occurred. |