search_flow_runs_by_state
Retrieve workflow flow runs by their state, such as 'COMPLETED' or 'FAILED', using optional filters and a customizable limit to streamline automation monitoring and analysis.
Instructions
Search for flow runs by state.
Args:
state_type: Optional state type (e.g., "COMPLETED", "FAILED", "CRASHED").
state_name: Optional state name (e.g., "Completed", "Failed").
limit: Maximum number of flow runs to return (default 20).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
state_name | No | ||
state_type | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"state_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "State Name"
},
"state_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "State Type"
}
},
"title": "search_flow_runs_by_stateArguments",
"type": "object"
}