Automic Workload Automation

 View Only
  • 1.  Critical Path via API

    Posted 28 days ago

    Hey All,

    Is there any way to mimic the critical path behavior of the AWI via API? I took a swing through the REST and Java documentation, but didn't see any direct match.



  • 2.  RE: Critical Path via API

    Posted 27 days ago

    Hi Darren,

    It seems like the question is related to mimicking the critical path behavior of the Automic Web Interface (AWI) via API. If the context is about workflow critical paths, you can explore the /executions/{run_id}/ert endpoint.

    Here's a breakdown of the relevant information from the provided documentation:

    Endpoint: /{client_id}/executions/{run_id}/ert

    • This endpoint provides access to the Execution Run-Time (ERT) data for a specific execution run identified by run_id.
    • Within the response, there's a field named longest_path_vertex_keys, which contains a list of runIds representing the longest path in the workflow execution.

    Documentation Reference: REST API Documentation

    Feel free to explore this endpoint further based on your specific requirements or use cases. 



    ------------------------------
    Regards,
    Arun Verma
    ------------------------------



  • 3.  RE: Critical Path via API

    Posted 25 days ago

    Looks like I didn't check close enough first attempt, that'll work perfect. Thank you for a second set of eyes!