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