FacetFlux

pim.products.traits.remove

Unassign one or more traits from a product. Note: existing attribute values for the trait's attributes are NOT deleted automatically — call pim.products.attributes.set with mode=replace afterwards if you want to drop them. Idempotent. Response: { productId, traitIds, removed: count }. Errors: { error: { code: 'not_found', ... } }.

Remote revuo:facetflux

Other tools also called pim.products.traits.remove? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "productId": {
      "description": "Product id.",
      "type": "string"
    },
    "traitIds": {
      "description": "Trait ids to remove.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "productId",
    "traitIds"
  ]
}