BrandKarma
update_research_suggestion
Marks a dossier's suggested primary research as open, answered or dismissed. Use dismissed for something the user will not do, so it stops being asked for; add_primary_research already marks an item answered when it is used to answer one.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called update_research_suggestion?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"dossierId": {
"description": "Dossier ID (ObjectId)",
"type": "string"
},
"suggestionId": {
"description": "Suggestion id, e.g. 's2'",
"type": "string"
},
"status": {
"description": "Open, Answered or Dismissed",
"type": "string"
}
},
"required": [
"dossierId",
"suggestionId",
"status"
]
}