Skip to main content
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>",
    "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>",
      "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

Authorization
string
header
required

Azure AD access token obtained via MSAL

Path Parameters

executionId
string
required

The execution ID

Query Parameters

flowId
string
required

The flow ID (used as partition key for efficient lookup)

Response

Execution detail with steps

execution
FlowExecution · object

A single flow execution run

steps
FlowExecutionStep · object[]