List task summaries for flow version
List task execution summaries for a specific flow version.
Returns lightweight task summaries without full output data, reducing network overhead when you only need execution metadata.
Performance Benefits
- Excludes potentially large task output fields
- Significantly faster response times for flows with large outputs
- Ideal for listing/summary views
Use Cases
- Display execution history in a table/list
- Check task statuses without downloading full outputs
- Build dashboards showing execution statistics
Authorizations
API key authentication. Include your API key in the X-API-Key header as: X-API-Key YOUR_API_KEY
Example:
JWT Bearer token authentication. Include your access token in the Authorization header as: Bearer YOUR_ACCESS_TOKEN
Example:
Response
List of task summaries successfully retrieved
UUID of the parent flow execution containing this task
"550e8400-e29b-41d4-a716-446655440000"
Current status of the task execution. Common values: 'running', 'completed', 'failed', 'skipped'
"completed"
Task execution summary data. Structure varies by task type. May contain results, metrics, or status information.
Name of the task as defined in the flow definition. Case-sensitive.
1 - 255"process_document"
Version of the flow definition when this task executed. May differ from current flow version if flow was updated.
x >= 13
Optional list of tags associated with this task. Tags use key:value format for categorization. Example: ['priority:high', 'department:finance']