Skip to content
v0.3

catalog.product.publish_bulk

Publish many products into a store in ONE transaction (all-or-nothing; already-published ones are skipped).

  • Scope: catalog.product.publish
  • System: no
  • Reachable from: POST /v1/commands/catalog.product.publish_bulk (tenant credential) · MCP tool catalog.product.publish_bulk · SDK client.call('catalog.product.publish_bulk', …)
  • Events: catalog.product.published
{
"properties": {
"product_ids": {
"items": {
"minLength": 1,
"type": "string"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
},
"store_id": {
"minLength": 1,
"type": "string"
}
},
"required": [
"product_ids",
"store_id"
],
"type": "object"
}
{
"additionalProperties": false,
"properties": {
"published": {
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
"skipped": {
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
"store_id": {
"type": "string"
}
},
"required": [
"store_id",
"published",
"skipped"
],
"type": "object"
}

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