FacetFlux
pim.products.channels.add
Publish product on one or more channels. Channel codes must already exist for the tenant (otherwise the underlying invariant rejects the write). Idempotent. Response: { productId, channelCodes, added: count }. Errors: { error: { code: 'not_found' | 'unprocessable', ... } }.
Remote revuo:facetflux
Other tools also called pim.products.channels.add?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"productId": {
"description": "Product id.",
"type": "string"
},
"channelCodes": {
"description": "Channel codes to add.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"productId",
"channelCodes"
]
}