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