list_recipes
List recipes for the authenticated Workato user. Filter by folder, adapters, running status, or date range, with paginated results and optional code exclusion for faster retrieval.
Instructions
List recipes belonging to the authenticated user (GET /api/recipes). Supports filtering by folder, adapters (connectors), running status, and date range. Results are paginated (default: per_page=100, max 100). Set exclude_code=true to speed up listing for large accounts.
Note: The Workato API does NOT support server-side name search. To find recipes by name, use the search_recipes tool instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| order | No | Sort order (default: 'default') | |
| running | No | If true, return only running recipes | |
| per_page | No | ||
| since_id | No | Return recipes with IDs lower than this value | |
| folder_id | No | Folder/project id to list recipes from | |
| exclude_code | No | Exclude recipe code from response (faster for large lists) | |
| stopped_after | No | ISO 8601 datetime — only recipes stopped after this | |
| updated_after | No | ISO 8601 datetime — only recipes updated after this | |
| with_subfolders | No | Include recipes from subfolders (default: false) | |
| adapter_names_all | No | Comma-separated adapter names — recipes must use ALL of them | |
| adapter_names_any | No | Comma-separated adapter names — recipes must use at least ONE |