catalog.brand.update
Update a brand (partial): name/slug/status/logo. Rename reprojects zero products.
- Scope:
catalog.product.write - System: no
- Reachable from:
POST /v1/commands/catalog.brand.update(tenant credential) · MCP toolcatalog.brand.update· SDKclient.call('catalog.brand.update', …) - Events:
catalog.brand.updated
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "properties": { "brand_id": { "minLength": 1, "type": "string" }, "logo_media": { "anyOf": [ { "minLength": 1, "type": "string" }, { "type": "null" } ] }, "name": { "minLength": 1, "type": "string" }, "slug": { "maxLength": 120, "minLength": 1, "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$", "type": "string" }, "status": { "enum": [ "active", "archived" ], "type": "string" } }, "required": [ "brand_id" ], "type": "object"}Result (200)
Section titled “Result (200)”Open (unknown) — this command does not declare an output schema.
Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)