BrandKarma
get_content_guidelines
Returns the brand's per-language content guidelines (formality, voice, style, glossary). Pass 'language' to fetch one language's guideline, or omit to list all. These guidelines are injected into content-generation and LocalizedRewrite-translation prompts.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called get_content_guidelines?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"brandId": {
"description": "Brand ID (ObjectId)",
"type": "string"
},
"language": {
"description": "Optional ISO language code, e.g. 'de'. Omit to list all configured languages.",
"type": [
"string",
"null"
],
"default": null
},
"country": {
"description": "Optional ISO country code for DACH-style splits, e.g. 'DE', 'AT'. Only used when language is provided.",
"type": [
"string",
"null"
],
"default": null
}
},
"required": [
"brandId"
]
}