list_actionflows
List ActionFlow metadata for organizations your API key can access. The tool does not return the graph.
list_actionflows
List ActionFlow metadata (id, name, slug, active, organization, timestamps). It does not return nodes or edges, and it does not create or edit flows.
Use this when you need flow ids. If you already have an id, call get_actionflow. To execute a flow, call run_actionflow.
See Installation for auth, pagination, and response_format.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
organizationId | string | No | Organization ID. Required for user-scoped keys. Organization-scoped keys inherit it. |
limit | number | No | Maximum flows to return, 1-100. Default 50. |
offset | number | No | Number of flows to skip. Default 0. |
response_format | json or markdown | No | Default json. |
Example
{
"organizationId": "org_123",
"limit": 20,
"offset": 0
}Returns
JSON with success, actionflows, count, total, offset, has_more, and next_offset when another page exists.
Empty actionflows means no accessible flows. Forbidden means pass an organizationId you belong to, or use an organization-scoped key.
Related
- get_actionflow
- REST List Flows
- SDK ActionFlows