PendiumDocs

add_research_column

Add a research/enrichment column to a content workflow. Inserted before the generation pipeline so its results feed content.

Add a research/enrichment column to a workflow — an extra context-gathering step. The new column is inserted before the generation pipeline (outline → text → review → media → publish) so its results feed content generation. Pending cells are scaffolded for every existing row. The content-production columns themselves come with the workflow and are not added here. Advanced per-column configuration (model, retrieval settings) stays UI-only. No LLM cost. Group-shared collaborators may add columns.

Authentication: Required

Parameters

ParameterTypeRequiredDescription
workflowIdstringYesThe workflow to add the column to. Get from create_workflow or list_workflows.
columnTypeenumYesThe research source (see below).
namestring (1–200)YesDisplay name for the column header.

Research column types

columnTypeWhat it does
enrichment_ragGather context from the brand's knowledge base.
enrichment_exaGather context from the web (Exa search).
enrichment_web_scrapeGather context by scraping pages.
enrichment_serpGather context from search-engine results.

Only research/enrichment columns can be added — the content-production steps (outline, text generation, quality review, media, publish) are scaffolded with the workflow and are not addable here.

Returns

workflowId, syntheticId, and the new columnId. Run the new column across all rows with run_column.

On this page