DocsAPI ReferenceProduct Parameter/bff/product-parameter/update
postProduct ParameterAdmin BFF

/bff/product-parameter/update

Updates properties of an existing parameter definition. Only provided fields are changed. Changing the type does not automatically migrate existing product assignments.

Product ParameterpostBffProduct-parameterUpdate

Parameters

11 body

11 total
Body · 11
codestringRequired

Code of the parameter to update.

namestring

New display name.

groupCodestring | null
typestring | string | string | string | string

Parameter data type. "string" = free text, "number" = numeric with optional unit, "boolean" = true/false, "enum" = predefined list of values, "color" = predefined colors with hex codes.

unitstring | null
filterableboolean

New filterable flag.

comparableboolean

New comparable flag.

variantFormingboolean

New variant-forming flag.

multiValueboolean

New multi-value flag.

positionnumber

New sort order position.

activeboolean

New active status.

Request

POST /bff/product-parameter/update

post
curl -X POST "https://api.bizkithub.com/bff/product-parameter/update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "code": "weight",
  "name": "Net Weight",
  "filterable": false,
  "comparable": false,
  "variantForming": false,
  "multiValue": false,
  "position": 1,
  "active": true
}'

Response

JSON payload

{
  "success": false
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key