Get Historic Batches
Queries for historic batches that fulfill given parameters. Parameters may be the properties of batches, such as the id or type. The size of the result set can be retrieved by using the Get Historic Batch Count method.
Method
GET /history/batch
Parameters
Query Parameters
| Name | Description | 
|---|---|
| batchId | Filter by batch id. | 
| type | Filter by batch type. See the User Guide for more information about batch types. | 
| completed | Filter completed or not completed batches. If the value is true, only completed batches, i.e., end time is set, are
      returned. Otherwise, if the value isfalse, only running
      batches, i.e., end time is null, are returned. | 
| tenantIdIn | Filter by a comma-separated list of tenant ids. A batch matches if it has one of the given tenant ids. | 
| withoutTenantId | Only include batches which belong to no tenant. Value can effectively only be true, asfalseis the default behavior. | 
| sortBy | Sort the results lexicographically by a given criterion.
      Valid values are batchId,startTime,endTime, andtenantId.
      Must be used in conjunction with thesortOrderparameter. | 
| sortOrder | Sort the results in a given order. Values may be ascfor ascending order ordescfor descending order.
    Must be used in conjunction with thesortByparameter. | 
| firstResult | Pagination of results. Specifies the index of the first result to return. | 
| maxResults | Pagination of results. Specifies the maximum number of results to return. Will return less results if there are no more results left. | 
Result
A JSON array of historic batch objects. Each historic batch object has the following properties:
| Name | Type | Description | 
|---|---|---|
| id | String | The id of the batch. | 
| type | String | The type of the batch. See the User Guide for more information about batch types. | 
| totalJobs | Number | The total jobs of a batch is the number of batch execution jobs required to complete the batch. | 
| batchJobsPerSeed | Number | The number of batch execution jobs created per seed job invocation.
      The batch seed job is invoked until it has created all batch execution jobs required by
      the batch (see totalJobsproperty). | 
| invocationsPerBatchJob | Number | Every batch execution job invokes the command executed by the batch invocationsPerBatchJobtimes. E.g., for a process instance
      migration batch this specifies the number of process instances which
      are migrated per batch execution job. | 
| seedJobDefinitionId | String | The job definition id for the seed jobs of this batch. | 
| monitorJobDefinitionId | String | The job definition id for the monitor jobs of this batch. | 
| batchJobDefinitionId | String | The job definition id for the batch execution jobs of this batch. | 
| tenantId | String | The tenant id of the batch. | 
| createUserId | String | The batch creator's user id. | 
| startTime | String | The time the batch was started. Default format* yyyy-MM-dd'T'HH:mm:ss.SSSZ. | 
| executionStartTime | String | The time the batch was execution started, i.e., at least one batch job has been executed.
      Default format* yyyy-MM-dd'T'HH:mm:ss.SSSZ. | 
| endTime | String | The time the batch ended. Default format* yyyy-MM-dd'T'HH:mm:ss.SSSZ. | 
| removalTime | String | The time after which the historic batch should be removed by the History Cleanup job. Default format* yyyy-MM-dd'T'HH:mm:ss.SSSZ. | 
* For further information, please see the documentation.
Response codes
| Code | Media type | Description | 
|---|---|---|
| 200 | application/json | Request successful. | 
| 400 | application/json | Returned if some of the query parameters are invalid, for example if a sortOrderparameter is supplied, but nosortBy.
      See the Introduction for the error response format. | 
Example
Request
GET /history/batch?type=aBatchType&completed=true&sortBy=batchId&sortOrder=asc
Response
Status 200.
[
  {
    "id": "aBatchId",
    "type": "aBatchType",
    "totalJobs": 10,
    "batchJobsPerSeed": 100,
    "invocationsPerBatchJob": 1,
    "seedJobDefinitionId": "aSeedJobDefinitionId",
    "monitorJobDefinitionId": "aMonitorJobDefinitionId",
    "batchJobDefinitionId": "aBatchJobDefinitionId",
    "tenantId": "aTenantId",
    "createUserId": "aUserId",
    "startTime": "2016-04-12T15:29:33.000+0200",
    "executionStartTime":"2013-01-23T13:42:43.000+0200",
    "endTime": "2016-04-12T16:23:34.000+0200",
    "removalTime": "2016-04-15T16:23:34.000+0200"
  }
]