BrandKarma

bulk_update_content_idea_status

Batch status change for multiple content ideas across one plan. Mirrors bulk_update_content_status (which targets ContentItems) — fail-soft, returns per-id errors. Useful for quickly skipping or approving many ideas without one tool call per idea. Idea IDs are GUIDs (from get_content_plan), not ObjectIds.

Remote Account required revuo:brandkarma-4084

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

Other tools also called bulk_update_content_idea_status? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "planId": {
      "description": "Content plan ID (ObjectId)",
      "type": "string"
    },
    "ideaIds": {
      "description": "Content idea IDs (GUID strings) to update.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "description": "New status: Idea, ApprovedForGeneration, Skipped, DraftReadyForReview, Published, Archived, Rejected",
      "type": "string"
    },
    "generationNotes": {
      "description": "Optional generation note applied to every successfully-updated idea.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "planId",
    "ideaIds",
    "status"
  ]
}