BrandKarma

update_category

Updates an existing content category. Any parameter omitted leaves that field unchanged. Use this to fix categories whose 'description' contains internal strategy language: move the strategy copy into 'internalNotes' and replace 'description' with a clean reader-facing summary. The public category page meta description is served from 'description'. 'description' and 'internalNotes' are plain text — send literal characters, do not HTML-escape (no '&amp;', '&lt;', or '<tag>').

Remote Account required revuo:brandkarma-4084

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

Other tools also called update_category? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "brandId": {
      "description": "Brand ID (ObjectId)",
      "type": "string"
    },
    "categoryId": {
      "description": "Category ID (ObjectId)",
      "type": "string"
    },
    "name": {
      "description": "New category name. Omit to leave unchanged.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "slug": {
      "description": "New URL slug. Omit to leave unchanged. Pass empty string to regenerate from name.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "description": {
      "description": "New public description (served as meta description). Omit to leave unchanged.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "internalNotes": {
      "description": "New private planner-facing notes. Omit to leave unchanged. Pass empty string to clear.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "brandId",
    "categoryId"
  ]
}