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

/bff/product-parameter/product-values

Returns all parameter values assigned to a product, including variant-level assignments. Each assignment contains the parameter definition, the concrete value (enum, string, number, or boolean), and optionally the variant code if the assignment is variant-specific.

Product ParametergetBffProduct-parameterProduct-values

Parameters

1 query

Query parameters

· 1
productCodestringRequired

Product code to list parameter values for.

Examplemy-product

Response schema

1 status code documented

200SuccessProduct parameter values.
itemsobject[]Required

All parameter assignments for the product.

Each array item:

Single parameter assignment on a product.

assignmentIdnumberRequired

Unique assignment ID (used to remove the assignment).

parameterCodestringRequired

Parameter code.

parameterNamestringRequired

Parameter display name.

parameterTypestringRequired

Parameter data type.

parameterUnitstringOptional

Parameter unit (e.g. "mm").

groupCodestringOptional

Group code, if the parameter is grouped.

groupNamestringOptional

Group display name.

valueCodestringOptional

Predefined value code (for enum/color types).

valueLabelstringOptional

Predefined value display label (for enum/color types).

colorHexstringOptional

Hex color code (for color-type values).

valueStringstringOptional

Free-text value (for string type).

valueNumbernumberOptional

Numeric value (for number type).

valueBooleanbooleanOptional

Boolean value (for boolean type).

variantCodestringOptional

Variant code if this assignment is variant-specific. Undefined for product-level.

itemCountnumberRequired

Total number of assignments.

Response example

application/json
{
  "items": [
    {
      "assignmentId": 0,
      "parameterCode": "example_parameterCode",
      "parameterName": "example_parameterName",
      "parameterType": "example_parameterType",
      "parameterUnit": "example_parameterUnit",
      "groupCode": "example_groupCode",
      "groupName": "example_groupName",
      "valueCode": "example_valueCode",
      "valueLabel": "example_valueLabel",
      "colorHex": "example_colorHex",
      "valueString": "example_valueString",
      "valueNumber": 0,
      "valueBoolean": false,
      "variantCode": "example_variantCode"
    }
  ],
  "itemCount": 0
}

Request example

GET /bff/product-parameter/product-values

get
curl -X GET "https://api.bizkithub.com/bff/product-parameter/product-values?productCode=my-product" \
  -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