selected-batch-info

Retrieves information about given Batch entry IDs stored on the Broker.

Example Request

POST http://example.com:8080/livecluster/rest/batch/selected-batch-info

Example Input

Parameters

Parameter Name

Data Type

Description

Sample Value

JSON

Array of Batch Entry IDs whose information needs to be retrieved

[
5838911030065021273,
7270548312726024832
]

Example Response

[
{
"name": "CalculatorServiceExample",
"type": "serial",
"definition": "CalculatorServiceExample.xml",
"suspended": false,
"description": "Batch Example that runs the Calculator Service",
"status": "Finished",
"submitTime": 1578900113129,
"batchId": 5838911030065021273,
"nextRuntime": null,
"scheduleType": "Immediate",
"localFileName": "CalculatorServiceExample.xml"
},
{
"name": "CalculatorServiceExample",
"type": "serial",
"definition": "CalculatorServiceExample.xml",
"suspended": false,
"description": "Batch Example that runs the Calculator Service",
"status": "Finished",
"submitTime": 1578902422059,
"batchId": 7270548312726024832,
"nextRuntime": null,
"scheduleType": "Immediate",
"localFileName": "CalculatorServiceExample.xml"
}
]