Hi @AdobeID24,Looks like there is no straight forward API to get the
workItems(entry for failed items) available immediately under the run
time instance path.From the list of all "RUNNING" workflows, you can get
the run time instance path via getId() method.With that path, you can
either use Resource or Node API to get workItems. Sample snippet for
reference:String[] states = {"RUNNING", "COMPLETED"}; WorkflowSession
wfSession = workflowService.getWorkflowSession(session); Workflow[] wf =
wfSess...