Skip to main content
Workflows are long-running AI pipelines (3-20 minutes) that research, write, and optimize content. They run asynchronously — you start one, then poll for completion.

Lifecycle

Starting a workflow

Workflows are started via platform_create_roadmap_item with start_drafting: true. This creates a roadmap item and immediately kicks off the drafting workflow.
Response:

Polling for status

Call workflows_get_status with workflow_id.

In Progress

Completed

Failed

Human review

Some workflows pause to let a human review intermediate results before continuing.

Detecting a paused workflow

When status is "Human Review", the response includes a review object:

Review types

Resuming a workflow

Call workflows_resume with the workflow_id and a decision object matching the review type:

Decision payloads by review type

implementation_spec_review:
answer_review:
keywords_review:
internal_link_review:

Workflow types

Only Create Post Draft can be started directly via MCP or API. The other 3 workflows are triggered when you approve optimization suggestions in the ClickFlow dashboard. Once running, all workflows can be polled and resumed via MCP/API.

Delivery modes