FacetFlux
pim.products.channels.remove
Unpublish product from one or more channels. Idempotent. Response: { productId, channelCodes, removed: count }. Errors: { error: { code: 'not_found', ... } }.
Remote revuo:facetflux
Other tools also called pim.products.channels.remove?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"productId": {
"description": "Product id.",
"type": "string"
},
"channelCodes": {
"description": "Channel codes to remove.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"productId",
"channelCodes"
]
}