BrandKarma
update_content_idea
Updates a content idea within a plan — approve/skip ideas, add notes, set scheduled dates.
Remote revuo:brandkarma-4084
Other tools also called update_content_idea?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"planId": {
"description": "Content plan ID (ObjectId)",
"type": "string"
},
"workstreamId": {
"description": "Workstream ID (GUID)",
"type": "string"
},
"ideaId": {
"description": "Content idea ID (GUID)",
"type": "string"
},
"status": {
"description": "New status: Idea, ApprovedForGeneration, Skipped",
"type": [
"string",
"null"
],
"default": null
},
"scheduledDate": {
"description": "Scheduled publication date (ISO 8601)",
"type": [
"string",
"null"
],
"default": null
},
"generationNotes": {
"description": "Notes or instructions for content generation",
"type": [
"string",
"null"
],
"default": null
},
"brief": {
"description": "Content brief (markdown) — detailed specification for the article",
"type": [
"string",
"null"
],
"default": null
}
},
"required": [
"planId",
"workstreamId",
"ideaId"
]
}