Automic Workload Automation

 View Only
  • 1.  Critical Path via API

    Posted Mar 29, 2024 10:13 AM

    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 Mar 31, 2024 05:15 AM

    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 Apr 01, 2024 09:53 AM

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