list_flows
Retrieve and filter flows from your current project to manage API workflows, with options to show active flows only and control result pagination.
Instructions
List flows in the current project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folderId | No | Filter by folder ID | |
| activeOnly | No | Show only active flows | |
| limit | No | Maximum number of flows to return | |
| offset | No | Number of flows to skip |
Input Schema (JSON Schema)
{
"properties": {
"activeOnly": {
"default": true,
"description": "Show only active flows",
"type": "boolean"
},
"folderId": {
"description": "Filter by folder ID",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of flows to return",
"type": "number"
},
"offset": {
"default": 0,
"description": "Number of flows to skip",
"type": "number"
}
},
"type": "object"
}