For example, we have three workflows W1, W2, W3, and a schedule S1 which runs them in sequence.
It is easy to identify whether a job triggered by S1 is running or finished, via scheduled-jobs API and jobs/{jobId} API.
However, I’ve got a requirement that even when S1 job is running, status of each workflow within the job should be reported. (like W1 is finished, W2 is running, and W3 is loading.)
I tried jobs API without jobID to list all jobs, but got no idea how to identify which job of a workflow is triggered by S1 job, since I could not find jobs of W1~W3 with createdVia=schedule.
Is there any way to breakdown a scheduled job into workflow level, using API?