BrandKarma

update_monitored_query

Updates a monitored query — change prompt text, status, or rating. Only provided fields are changed.

Remote Account required revuo:brandkarma-4084

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

Other tools also called update_monitored_query? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "queryId": {
      "description": "Monitored query ID (ObjectId)",
      "type": "string"
    },
    "displayName": {
      "description": "New display name",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "prompt": {
      "description": "New prompt text",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "status": {
      "description": "New status: Auto, On, Off",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "rating": {
      "description": "Rating (0.0-5.0) for prompt quality",
      "type": [
        "number",
        "null"
      ],
      "default": null
    },
    "industry": {
      "description": "New report bucket. Must be one of the values list_prompt_industries returns for this prompt's brand; anything else is snapped to the closest one.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "aspect": {
      "description": "New aspect",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "countryCode": {
      "description": "Market override, 2-letter country code. Empty string follows the brand.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "languageCode": {
      "description": "Language override. Empty string follows the brand.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "queryId"
  ]
}