BrandKarma

update_brand_keywords

Add to / replace / remove from the brand's keywords list. 'remove' is applied after the merge/replace step, so you can do both in one call. Use 'remove' to delete entries without re-sending the whole list (no GET-then-PUT race).

Remote Account required revuo:brandkarma-4084

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

Other tools also called update_brand_keywords? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "brandId": {
      "description": "Brand ID (ObjectId)",
      "type": "string"
    },
    "keywords": {
      "description": "List of keyword strings.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "mode": {
      "description": "'merge' to add to existing, 'replace' to overwrite",
      "type": "string",
      "default": "merge"
    },
    "remove": {
      "description": "Optional list of keyword strings to remove from the brand. Case-insensitive.",
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": [
          "string",
          "null"
        ]
      },
      "default": null
    }
  },
  "required": [
    "brandId",
    "keywords"
  ]
}