FacetFlux

pim.schemas.set.productNumberTemplate

Set the schema's product-number template. C = category code character, N = sequential digit, any other character = literal. Example: 'CCCC-NNNNNNNN' renders 'PUMP-00000001'. Pass null to clear. Response: { schemaId, productNumberTemplate }. Errors: { error: { code: 'not_found', ... } }.

Remote revuo:facetflux

Other tools also called pim.schemas.set.productNumberTemplate? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "schemaId": {
      "description": "Schema id.",
      "type": "string"
    },
    "productNumberTemplate": {
      "description": "Template string, or null to clear.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "schemaId",
    "productNumberTemplate"
  ]
}