PendiumDocs

run_row

Generate content for a single row of a workflow.

Fire the content-generation pipeline for one row (item) of a workflow. The row runs through its configured columns — outline → post text → quality review.

Authentication: Required — Starter or Pro plan (heavy LLM cost).

Parameters

ParameterTypeRequiredDescription
workflowIdstringYesThe workflow the row belongs to. From create_workflow or list_workflows.
itemIdstringYesThe row to run. Each idea added via add_workflow_ideas / generate_workflow_ideas is one item.

Behavior

Returns immediately after enqueueing; generation is async — typically 1–3 minutes. The response status is one of:

  • enqueued — the row was dispatched; queuedCellCount cells are now generating.
  • in_flight — the row is already running from a prior call; nothing re-fired.
  • nothing_to_run — every cell is already complete; nothing to do.

Run the whole sheet at once with run_workflow_pipeline, or a single column across every row with run_column.

On this page