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

/bff/product-parameter/value-update

Updates properties of a predefined parameter value. Only provided fields are changed.

Product ParameterpostBffProduct-parameterValue-update

Parameters

JSON body

Request body

application/json
parameterCodestringRequired

Code of the parameter the value belongs to.

Examplecolor
valueCodestringRequired

Code of the value to update.

Examplered
labelstringOptional

New display label.

ExampleDark Red
colorHexstring | nullOptional
One of 2:
Variant 1
string

New hex color code, or null to clear.

Example#8B0000
Variant 2
null
positionnumberOptional

New sort order position.

Example1
activebooleanOptional

New active status.

Exampletrue

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the value was updated.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/product-parameter/value-update

post
curl -X POST "https://api.bizkithub.com/bff/product-parameter/value-update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "parameterCode": "color",
  "valueCode": "red",
  "label": "Dark Red",
  "position": 1,
  "active": true
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key