Skip to main content
Version: 2.2.2

newBatch

This method allows adding a new capture batch.

Java class
Requestweb/wwwroot/ws/java/capture/NewBatchRequestType.java
Returnweb/wwwroot/ws/java/capture/NewBatchResponseType.java

Request:

ID #RequiredDescription
CaptureSettingIDXCapture configuration ID #
BatchIDCapture batch ID #. If it is not entered, a sequential ID # will be generated.
BatchNameBatch title. If it is not entered, a sequential ID # will be generated based on the date/time of the batch creation.

Request structure:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:capture">
<soapenv:Header/>
<soapenv:Body>
<urn:newBatch>
<!--You may enter the following 3 items in any order-->
<urn:CaptureSettingID>?</urn:CaptureSettingID>
<urn:BatchID>?</urn:BatchID>
<urn:BatchName>?</urn:BatchName>
</urn:newBatch>
</soapenv:Body>
</soapenv:Envelope>

Return:

ID #Description
StatusFAILURE (in case of failure)
SUCCESS (in case of success)
CodeError code:
â–ª 0 - No error (record created successfully);
â–ª 1 - Required parameter not entered or entered incorrectly;
â–ª 2 - This user does not have permission for this operation;
â–ª 3 - ID # already exists;
â–ª 4 - Capture configuration not found;
DetailMessage detailing the error or success in the execution of the method.
RecordIDCreated batch ID # (in case of success) or empty (in case of failure)