BrandKarma

create_category

Creates a content category for a brand. Categories are required for publishing articles. Returns the created category with its ID.

Remote revuo:brandkarma-4084

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": "Short description of what this category covers",
      "type": "string"
    },
    "slug": {
      "description": "URL slug (auto-generated from name if omitted)",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "brandId",
    "name",
    "description"
  ]
}