BrandKarma
update_brand_blocked_domains
Add to / replace / remove from the list of domains blocked from generated content links. Mode 'merge' (default) adds new domains; 'replace' overwrites. 'remove' deletes domains (case-insensitive) — applied after the merge/replace step.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called update_brand_blocked_domains?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"brandId": {
"description": "Brand ID (ObjectId)",
"type": "string"
},
"domains": {
"description": "List of domains to block. Omit to only run removals.",
"type": [
"array",
"null"
],
"items": {
"type": [
"string",
"null"
]
},
"default": null
},
"mode": {
"description": "'merge' (default) or 'replace'.",
"type": "string",
"default": "merge"
},
"remove": {
"description": "Optional list of domains to remove from the blocked list (case-insensitive).",
"type": [
"array",
"null"
],
"items": {
"type": [
"string",
"null"
]
},
"default": null
}
},
"required": [
"brandId"
]
}