FacetFlux
pim.products.status.set
Set the product's lifecycle status. Allowed values: draft, active, archived, requiresAttention. Use this for 'soft delete' (status=archived); there is no hard delete via MCP in v1. Response: { productId, status }. Errors: { error: { code: 'not_found', ... } }.
Remote revuo:facetflux
Other tools also called pim.products.status.set?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"productId": {
"description": "Product id.",
"type": "string"
},
"status": {
"description": "New lifecycle status.",
"type": "string",
"enum": [
"Draft",
"Active",
"Archived",
"RequiresAttention"
]
}
},
"required": [
"productId",
"status"
]
}