# Get batch workflow execution status Returns real-time status information about a batch workflow execution, including progress tracking of individual workflow executions. This provides a summary of how many executions are completed, failed, or still in progress, along with the overall batch status. Endpoint: GET /batch-workflow-executions/{batchExecutionId}/status Version: 1.0.0 Security: bearerAuth ## Path parameters: - `batchExecutionId` (string, required) UUID of the batch workflow execution Example: "123e4567-e89b-12d3-a456-426614174000" ## Response 200 fields (application/json): - `total` (number, required) Total number of individual workflow executions in this batch Example: 15 - `completed` (number, required) Number of workflow executions that have completed successfully Example: 12 - `failed` (number, required) Number of workflow executions that have failed Example: 1 - `inProgress` (number, required) Number of workflow executions currently in progress Example: 2 - `status` (string, required) Overall status of the batch execution Enum: "completed", "processing", "failed" ## Response 401 fields (application/json): - `error` (string, required) Example: "Unauthorized" - `message` (string, required) Example: "Authentication required" ## Response 404 fields (application/json): - `error` (string, required) Example: "Not Found" - `message` (string, required) Example: "Batch workflow execution not found" ## Response 500 fields (application/json): - `error` (string, required) Example: "Internal Server Error" - `message` (string, required) Example: "An unexpected error occurred during batch execution"