Skip to content
v0.3

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 tool catalog.brand.update · SDK client.call('catalog.brand.update', …)
  • Events: catalog.brand.updated
{
"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"
}

Open (unknown) — this command does not declare an output schema.

validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)