deleteBatch
This method allows deleting a batch from SoftExpert Capture. To use it, it is necessary to follow the standard documented below:
| Java class | |
|---|---|
| Request | web/wwwroot/ws/java/capture/DeleteBatchRequestType.java |
| Return | web/wwwroot/ws/java/capture/DeleteBatchResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| BatchID | X | Capture batch ID #. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:capture">
<soapenv:Header/>
<soapenv:Body>
<urn:deleteBatch>
<urn:BatchID>?</urn:BatchID>
</urn:deleteBatch>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| Status | Method execution status. Its value may be: SUCCESS: Method executed successfully FAILURE: An error occurred during the method execution |
| Code | Method return code |
| Detail | Method return detail |
| RecordID | ID # of the record deleted by the method |