Workflow Execution
Monitor workflow progress — node stats, lead positions, activity logs, and retry failed entries.
Tools (4)
Section titled “Tools (4)”get_workflow_stats
Section titled “get_workflow_stats”Full name: campaignstack_get_workflow_stats
Get real-time execution statistics for a workflow. Returns per-node lead counts (waiting, processing, completed, failed), edge traversal counts, and paused action types. Use campaignstack_get_workflow to get the workflow structure first.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
workflowId | string | Yes | — | (min length: 1) |
list_leads_at_node
Section titled “list_leads_at_node”Full name: campaignstack_list_leads_at_node
List leads currently at a specific workflow node. Returns up to 100 leads with their name, headline, company, status, and timestamps. Use campaignstack_get_workflow_stats to identify nodes of interest.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
nodeId | string | Yes | — | (min length: 1) |
get_node_activity
Section titled “get_node_activity”Full name: campaignstack_get_node_activity
Get recent activity for a specific workflow node. Returns entries sorted by most recent, with per-status counts. Useful for monitoring execution progress and identifying failures.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
nodeId | string | Yes | — | (min length: 1) |
limit | integer | No | 50 | (min: 1, max: 100) |
retry_failed_entry
Section titled “retry_failed_entry”Full name: campaignstack_retry_failed_entry
Retry a failed workflow entry. Resets the entry from FAILED to WAITING so the workflow executor picks it up on the next tick. Use campaignstack_list_leads_at_node to find failed entries.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
entryId | string | Yes | — | (min length: 1) |
workspaceId | string | Yes | — | (min length: 1) |