BrandKarma
update_monitored_query
Updates a monitored query — change prompt text, status, or rating. Only provided fields are changed.
Remote revuo:brandkarma-4084
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 industry",
"type": [
"string",
"null"
],
"default": null
},
"aspect": {
"description": "New aspect",
"type": [
"string",
"null"
],
"default": null
}
},
"required": [
"queryId"
]
}