BrandKarma
create_category
Creates a content category for a brand. Categories are required for publishing articles. IMPORTANT: 'description' is served publicly as the category page meta description — keep it reader-friendly and free of strategy/positioning language. Put planner-facing notes in 'internalNotes' instead. Both fields are plain text — send literal characters, do not HTML-escape (no '&', '<', or '<tag>'). Returns the created category with its ID.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called create_category?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"brandId": {
"description": "Brand ID (ObjectId)",
"type": "string"
},
"name": {
"description": "Category name (e.g. 'Industry News', 'Product Updates')",
"type": "string"
},
"description": {
"description": "Public description served as the category page meta description. Keep it short, reader-friendly, and free of internal strategy language.",
"type": "string"
},
"slug": {
"description": "URL slug (auto-generated from name if omitted)",
"type": [
"string",
"null"
],
"default": null
},
"internalNotes": {
"description": "Private planner-facing notes (strategy, positioning, audience). Never served publicly.",
"type": [
"string",
"null"
],
"default": null
}
},
"required": [
"brandId",
"name",
"description"
]
}