BizKitHub
DocsAPI ReferenceProduct Parameter/bff/product-parameter/value-list
getProduct ParameterAdmin BFF

/bff/product-parameter/value-list

Returns all predefined values for an enum or color parameter. Values are ordered by position then label. Each value has a code (for API use) and a label (for display).

Product ParametergetBffProduct-parameterValue-list

Parameters

1 query

Query parameters

· 1
parameterCodestringRequired

Code of the enum/color parameter to list values for.

Examplecolor

Response schema

1 status code documented

200SuccessList of predefined parameter values.
itemsobject[]Required

Values ordered by position then label.

Each array item:

Predefined parameter value.

idnumberRequired

Internal value ID.

codestringRequired

Unique value code within this parameter.

labelstringRequired

Display label (e.g. "Red", "XL", "Cotton").

colorHexstringOptional

Hex color code (e.g. "#FF5733"). Only for color-type parameters.

positionnumberRequired

Sort order position.

activebooleanRequired

Whether the value is active.

itemCountnumberRequired

Total number of values.

Response example

application/json
{
  "items": [
    {
      "id": 0,
      "code": "example_code",
      "label": "example_label",
      "colorHex": "example_colorHex",
      "position": 0,
      "active": false
    }
  ],
  "itemCount": 0
}

Request example

GET /bff/product-parameter/value-list

get
curl -X GET "https://api.bizkithub.com/bff/product-parameter/value-list?parameterCode=color" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key