3.6.1 Batch Rerun API

Use the Rerun API to rerun an existing batch execution.

Attributes
  • batchName - The unique batch code
  • batchRunID - Execution Id generated while triggering the object and can be obtained in the response of Execution API.
Request Body
{
    "batchName": "<Batch_code>",
    "batchRunId": "<Batchrun_ID>"
}

Sample Response Body

The following Response body is a sample for Success : 200 OK. For more information about status code in the response body, refer to Rest API Status Codes.
Success Scenario: 200 OK
{
    "severity": "info",
    "summary": "Object triggered successfully for rerun with Run Id: B2001_2022-05-30_1653223084727_1",
    "batchRunId": "B2001_2022-05-30_1653223084727_1",
    "details": "Object triggered successfully.",
    "statusCode": "0",
    "status": "success"
}