Skip to main content

get_actionflow

Get metadata for one ActionFlow by ID. The tool does not return nodes or edges.

get_actionflow

Get metadata for one flow (id, name, organization, active, slug, timestamps). It does not return the graph.

Use this when you have a flow ID from list_actionflows and need its name or organization before run_actionflow. Open the playground in the app if you need the graph.

See Installation for auth and response_format.

Arguments

ArgumentTypeRequiredDescription
actionFlowIdstringYesFlow ID from list_actionflows.
organizationIdstringNoOrganization ID used for access checks.
response_formatjson or markdownNoDefault json.

Example

{
  "actionFlowId": "flow_456",
  "organizationId": "org_123"
}

Returns

JSON with success and actionflow.

Not found: call list_actionflows and use an ID from that list. Forbidden: pass the organization that owns the flow.

On this page