BrandKarma
update_brand_description
Update the brand's description and/or value propositions. Both fields are plain text — send literal characters, do not HTML-escape (no '&', '<', or '<tag>'). Omit a field to leave it unchanged.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called update_brand_description?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"brandId": {
"description": "Brand ID (ObjectId)",
"type": "string"
},
"description": {
"description": "Brand description (plain text). Omit to leave unchanged.",
"type": [
"string",
"null"
],
"default": null
},
"valuePropositions": {
"description": "Free-text value propositions used to guide AI content generation. Plain text only.",
"type": [
"string",
"null"
],
"default": null
}
},
"required": [
"brandId"
]
}