While debugging a flow in OO Studio, the step input "METADATA" is created at the beginning of the flow and is assigned both the UUID and flow name at the end of the flow. How can I access the UUID and flow name during the flow run?
Application Delivery Management
Application Modernization & Connectivity
CyberRes
IT Operations Management
While debugging a flow in OO Studio, the step input "METADATA" is created at the beginning of the flow and is assigned both the UUID and flow name at the end of the flow. How can I access the UUID and flow name during the flow run?
You could get from REST call: GET /executions/{executionIds}/summary
executionsIDs is "run_id" variable
You will get flowUUID and flowName
{ "executionId": "101000011", ...
"flowUuid": "06fe8531-868b-4e79-aa7a-13a5e30a66ec", "flowPath": "Library/Utility Operations/Samples/Generate Random Number.xml", "executionName": "Generate Random Number", ...
}