Error
A valid request URL is required to generate request examples{
"flowId": "<string>",
"executions": [
{
"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
}
],
"count": 123
}Flows
List past executions for a flow
Returns the most recent executions for the given flow, ordered by start time descending. Each execution includes aggregated token usage when available.
GET
/
flow
/
executions
/
{flowId}
Error
A valid request URL is required to generate request examples{
"flowId": "<string>",
"executions": [
{
"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
}
],
"count": 123
}Authorizations
Azure AD access token obtained via MSAL
Path Parameters
The flow ID to list executions for
Query Parameters
Maximum number of executions to return (capped at 200)
Required range:
x <= 200Was this page helpful?