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"
            }
        }
    ]
}