list_flows
Retrieve a list of flows from the Prefect API for workflow management. Specify limit and offset parameters to control the number of flows returned and pagination.
Instructions
Get a list of flows from the Prefect API.
Args:
limit: Maximum number of flows to return (default 20).
offset: Number of flows to skip (default 0).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
}
},
"title": "list_flowsArguments",
"type": "object"
}