BrandKarma

create_workstream

Appends a new workstream to a content plan. Use after create_content_plan with autoGenerate=false to build a plan manually, or to add a workstream to an existing plan. Workstreams are themed clusters (e.g. 'Authority Building', 'Product Education'); ideas live inside a workstream. Returns the new workstream ID — feed it into add_content_ideas.

Remote Account required revuo:brandkarma-4084

Remote (network-hosted) · Requires an account with the vendor · OAuth

Other tools also called create_workstream? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "planId": {
      "description": "Content plan ID (ObjectId)",
      "type": "string"
    },
    "title": {
      "description": "Workstream title (e.g. 'Foster position as leading seller of specialized screws'). Plain text.",
      "type": "string"
    },
    "goal": {
      "description": "Workstream goal — short summary of the objective. Plain text. Defaults to title when omitted.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "priority": {
      "description": "Priority: High, Medium (default), Low.",
      "type": "string",
      "default": "Medium"
    },
    "targetAudience": {
      "description": "Optional target audience description. Plain text.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "planId",
    "title"
  ]
}