BrandKarma

archive_content_plan

Archives a content plan. Use this for plans that drifted off-brand, were superseded, or are otherwise dead — archived plans are filtered out of default list_content_plans but remain queryable with status='Archived'. Optional 'reason' is stored on the plan for audit.

Remote Account required revuo:brandkarma-4084

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

Other tools also called archive_content_plan? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "planId": {
      "description": "Content plan ID (ObjectId)",
      "type": "string"
    },
    "reason": {
      "description": "Optional human/agent-supplied note explaining why the plan is being archived.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "planId"
  ]
}