BrandKarma
complete_content_plan
Marks a content plan as Completed. Use this when the plan's intended output has shipped and you don't expect further work — completed plans are filtered out of the default list_content_plans view but remain queryable with status='Completed'. Optional 'reason' is stored on the plan for audit and is shown back in get_content_plan.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called complete_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 completed.",
"type": [
"string",
"null"
],
"default": null
}
},
"required": [
"planId"
]
}