Error
A valid request URL is required to generate request examples{
"execution": {
"id": "<string>",
"flowId": "<string>",
"flowName": "<string>",
"userId": "<string>",
"userName": "<string>",
"status": "running",
"strategy": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"totalDurationMs": 123,
"totalSteps": 123,
"outputSummary": "<string>",
"errorMessage": "<string>",
"totalTokenUsage": {
"inputTokens": 123,
"outputTokens": 123,
"totalTokens": 123,
"cacheReadTokens": 123,
"cacheCreationTokens": 123,
"reasoningTokens": 123,
"model": "<string>"
},
"_ttl": 123
},
"steps": [
{
"id": "<string>",
"executionId": "<string>",
"flowId": "<string>",
"stepNumber": 123,
"nodeId": "<string>",
"nodeLabel": "<string>",
"nodeType": "<string>",
"status": "success",
"input": "<string>",
"output": "<string>",
"errorMessage": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"durationMs": 123,
"tokenUsage": {
"inputTokens": 123,
"outputTokens": 123,
"totalTokens": 123,
"cacheReadTokens": 123,
"cacheCreationTokens": 123,
"reasoningTokens": 123,
"model": "<string>"
},
"_ttl": 123
}
]
}Flows
Get execution detail with all steps
Returns the full execution record and its ordered step list. Each step includes per-step token usage when an LLM was invoked.
GET
/
flow
/
execution
/
{executionId}
Error
A valid request URL is required to generate request examples{
"execution": {
"id": "<string>",
"flowId": "<string>",
"flowName": "<string>",
"userId": "<string>",
"userName": "<string>",
"status": "running",
"strategy": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"totalDurationMs": 123,
"totalSteps": 123,
"outputSummary": "<string>",
"errorMessage": "<string>",
"totalTokenUsage": {
"inputTokens": 123,
"outputTokens": 123,
"totalTokens": 123,
"cacheReadTokens": 123,
"cacheCreationTokens": 123,
"reasoningTokens": 123,
"model": "<string>"
},
"_ttl": 123
},
"steps": [
{
"id": "<string>",
"executionId": "<string>",
"flowId": "<string>",
"stepNumber": 123,
"nodeId": "<string>",
"nodeLabel": "<string>",
"nodeType": "<string>",
"status": "success",
"input": "<string>",
"output": "<string>",
"errorMessage": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"durationMs": 123,
"tokenUsage": {
"inputTokens": 123,
"outputTokens": 123,
"totalTokens": 123,
"cacheReadTokens": 123,
"cacheCreationTokens": 123,
"reasoningTokens": 123,
"model": "<string>"
},
"_ttl": 123
}
]
}Authorizations
Azure AD access token obtained via MSAL
Path Parameters
The execution ID
Query Parameters
The flow ID (used as partition key for efficient lookup)
Was this page helpful?