What it does
Requests a filtered set of batches from a server in groups. For example, you can send a request that looks as follows: “return 100 batches that are at the recognition stage starting from the 500th batch.”Definition
Parameters
Name | Type | Description |
sessionId | int | The ID of the connection to the Application Server |
projectId | int | The ID of the project that contains the batch types about which information is to be retrieved |
batchTypeId | int | The ID of the batch type
|
stageTypes | int [] | The set of stage types (for possible values, see ProcessingStage) that have the batches you are looking for
|
stageExtIds | int [] | The set of stage IDs (the Id field in the ProcessingStage structure) that have the batches you are looking for
|
name | string | The prefix of the batch name. An empty line signifies that any names are allowed |
batchPurpose | int | The purpose of the batch Possible values:
|
startDate | long | Batches that were created later than the specified date, 0 stands for all batches For conversion, use the following methods (the example below is in C#): |
stopDate | long | Batches that were created not earlier than the specified date, 0 stands for all batches For conversion, use the following methods (the example below is in C#): |
slaDateBeginRange | long | Batches with the processing end date under an SLA not earlier than the specified date, 0 stands for all batches For conversion, use the following methods (the example below is in C#): |
slaDateEndRange | long | Batches with the processing end date under an SLA not later than the specified date, 0 stands for all batches For conversion, use the following methods (the example below is in C#): |
slaStateFlags | int | Contains a warning about a batch processing deadline The following values or their logical sum (OR) is admissible:
|
firstRecord | int | The first record in the list (Records are numbered starting from the zero element) |
recordsCount | int | The number of batches that a user tries to obtain |
filterRegParams | The set of “name–value” pairs that is used to filter by registration parameters (It is permitted to send only 5 value pairs, other pairs will be ignored) |
