Batch Group Execution API

Use the Execution API to trigger a batch group.

  • Attributes
    • batchName - The unique batch code
    • batchType - The object type. For Batchgroup, the batch type should be set to group.
    • dynamicParamList - List of run time parameters which should be overridden over actual values for this trigger. This is an optional parameter.
Request Body
{
    "batchName": "<Batch_group_code>",
    "batchType": "group",
    "dynamicParamList": [
        {
            "batchName": "MIS_BATCH001",
            "batchParams": {
                "$FICMISDATE$": "2022-10-23"
            }
        },
        {
            "batchName": "MIS_BATCH002",
            "batchParams": {
                "$FICMISDATE$": "2022-10-28"
            }
        }
    ]
}

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 unresolvable-reference.html#GUID-9ECDCE0D-01C2-493B-BAD5-42E7E90B021A.


{
    "severity": "info",
    "summary": "Object triggered successfully with Run Id: B2001_2022-05-20_1653041947296_1",
    "batchRunId": "B2001_2022-05-20_1653041947296_1",
    "details": "Object triggered successfully.",
    "statusCode": "0",
    "status": "success"
}