newCaptureInstance
This method allows starting batch document verification workflows. To use it, it is necessary to follow the standard documented below:
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\document\NewCaptureInstanceRequestType.java |
| Return | web\wwwroot\ws\java\document\NewCaptureInstanceResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| PROCESSID | X | Process ID #. |
| WORKFLOWTITLE | X | Workflow title. |
| DOCUMENTBATCHID | X | Batch document ID #. |
| USERID | User ID. | |
| CAPTBATCHID | X | Batch ID # |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:document">
<soapenv:Header/>
<soapenv:Body>
<urn:newCaptureInstance>
<!--You may enter the following 5 items in any order-->
<urn:processid>?</urn:processid>
<urn:workflowtitle>?</urn:workflowtitle>
<urn:documentbatchid>?</urn:documentbatchid>
<urn:userid>?</urn:userid>
<urn:captbatchid>?</urn:captbatchid>
</urn:newCaptureInstance>
</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. |
| RecordKey | Code of the record added by the method. |
| RecordID | ID # of the record added by the method. |