FacetFlux
pim.products.categories.remove
Remove product from one or more categories. Idempotent — non-assigned categories are no-ops. Response: { productId, categoryIds, removed: count }. Errors: { error: { code: 'not_found', ... } }.
Remote revuo:facetflux
Other tools also called pim.products.categories.remove?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"productId": {
"description": "Product id.",
"type": "string"
},
"categoryIds": {
"description": "Category ids to remove.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"productId",
"categoryIds"
]
}