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.